Table of Contents

Class ContextFileContent

Namespace
FoundationaLLM.Common.Models.Context
Assembly
FoundationaLLM.Common.dll

Represents the content of a file.

public class ContextFileContent
Inheritance
ContextFileContent
Inherited Members
Extension Methods

Properties

ContentType

Gets or sets the content type of the file.

[JsonPropertyName("content_type")]
public required string ContentType { get; set; }

Property Value

string

FileContent

Gets or sets the the binary file content.

[JsonPropertyName("file_content")]
public BinaryData? FileContent { get; set; }

Property Value

BinaryData

FileName

Gets or sets the name of the file.

[JsonPropertyName("file_name")]
public required string FileName { get; set; }

Property Value

string