Class CachedKnowledgeGraph
- Namespace
- FoundationaLLM.Context.Models
- Assembly
- FoundationaLLM.Context.dll
Represents a knowledge graph with caching capabilities to optimize data retrieval and reduce redundant computations.
public class CachedKnowledgeGraph
- Inheritance
-
CachedKnowledgeGraph
- 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
Index
Gets or sets the knowledge graph index used for organizing and retrieving information.
public KnowledgeGraphIndex Index { get; set; }
Property Value
Relationships
Gets or sets the collection of relationships associated with the knowledge entity.
public List<KnowledgeRelationship> Relationships { get; set; }