Class ContextKnowledgeSourceQueryResponse
- Namespace
- FoundationaLLM.Common.Models.Context.Knowledge
- Assembly
- FoundationaLLM.Common.dll
Represents the result of a knowledge source query.
public class ContextKnowledgeSourceQueryResponse : ContextServiceResponse
- Inheritance
-
ContextKnowledgeSourceQueryResponse
- Inherited Members
- Extension Methods
Properties
KnowledgeGraphResponse
Gets or sets the response from the knowledge graph query.
[JsonPropertyName("knowledge_graph_response")]
public ContextKnowledgeGraphResponse? KnowledgeGraphResponse { get; set; }
Property Value
TextChunks
Gets or sets the list of text chunks that are part of the result.
[JsonPropertyName("text_chunks")]
public List<ContextTextChunk> TextChunks { get; set; }