Table of Contents

Class ContextTextChunk

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

Represents a text chunk used to build context.

public class ContextTextChunk
Inheritance
ContextTextChunk
Inherited Members
Extension Methods

Properties

Content

Gets or sets the text content of the text chunk.

[JsonPropertyName("content")]
public required string Content { get; set; }

Property Value

string

Metadata

Gets or sets the metadata associated with the text chunk.

[JsonPropertyName("metadata")]
public Dictionary<string, object> Metadata { get; set; }

Property Value

Dictionary<string, object>