Table of Contents

Class ContextKnowledgeUnitRenderGraphResponse

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

Represents the response to the request to render a knowledge unit's knowledge graph.

public class ContextKnowledgeUnitRenderGraphResponse
Inheritance
ContextKnowledgeUnitRenderGraphResponse
Inherited Members
Extension Methods

Properties

Edges

Gets or sets the list of edges in the knowledge graph, where each edge is represented as a list of two node identifiers.

[JsonPropertyName("edges")]
public List<List<string>> Edges { get; set; }

Property Value

List<List<string>>

Nodes

Gets or sets the list of nodes in the knowledge graph.

[JsonPropertyName("nodes")]
public List<KnowledgeGraphRenderingNode> Nodes { get; set; }

Property Value

List<KnowledgeGraphRenderingNode>