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
Metadata
Gets or sets the metadata associated with the text chunk.
[JsonPropertyName("metadata")]
public Dictionary<string, object> Metadata { get; set; }
  Property Value
Score
Gets or sets the relevance score of the text chunk.
[JsonPropertyName("score")]
public double? Score { get; set; }