Table of Contents

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

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

List<string>

Description

Gets or sets the description of the entity.

[JsonPropertyName("description")]
public required string Description { get; set; }

Property Value

string

Name

Gets or sets the name of the entity.

[JsonPropertyName("name")]
public required string Name { get; set; }

Property Value

string

Type

Gets or sets the type of the entity.

[JsonPropertyName("type")]
public required string Type { get; set; }

Property Value

string