Table of Contents

Class KnowledgeGraph

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

Represents a knowledge graph, which is a structured representation of knowledge entities and their relationships.

public class KnowledgeGraph : ResourceBase
Inheritance
KnowledgeGraph
Inherited Members
Extension Methods

Properties

Entities

Gets or sets the collection of knowledge entities associated with the knowledge graph.

public List<KnowledgeEntity> Entities { get; set; }

Property Value

List<KnowledgeEntity>

Relationships

Gets or sets the collection of relationships associated with the knowledge entity.

public List<KnowledgeRelationship> Relationships { get; set; }

Property Value

List<KnowledgeRelationship>