Class ExtractedKnowledgeEntity
- Namespace
 - FoundationaLLM.Common.Models.Knowledge
 
- Assembly
 - FoundationaLLM.Common.dll
 
Represents an extracted entity from a knowledge extraction process.
public class ExtractedKnowledgeEntity
  - Inheritance
 - 
      
      ExtractedKnowledgeEntity
 
- Inherited Members
 
- Extension Methods
 
Constructors
ExtractedKnowledgeEntity()
Initializes a new instance of the ExtractedKnowledgeEntity class.
public ExtractedKnowledgeEntity()
  Properties
ChunkIds
Gets or sets the list of chunk ids associated with the entity.
[JsonPropertyName("chunk_ids")]
public List<string>? ChunkIds { get; set; }
  Property Value
Description
Gets or sets the description of the entity.
[JsonPropertyName("description")]
public string Description { get; set; }
  Property Value
Name
Gets or sets the name of the entity.
[JsonPropertyName("name")]
public string Name { get; set; }
  Property Value
Type
Gets or sets the type of the entity.
[JsonPropertyName("type")]
public string Type { get; set; }