Table of Contents

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

ContextKnowledgeGraphResponse

TextResponse

Gets or sets the formatted text response.

[JsonPropertyName("text_response")]
public string? TextResponse { get; set; }

Property Value

string

VectorStoreResponse

Gets or sets the response from the vector store query.

[JsonPropertyName("vector_store_response")]
public ContextVectorStoreResponse? VectorStoreResponse { get; set; }

Property Value

ContextVectorStoreResponse