Interface KnowledgeSource

Source of knowledge

interface KnowledgeSource {
    type: "system" | "user_input" | "conversation" | "rag_ingest" | "web_search" | "inference";
    reference?: string;
    timestamp: string;
    method?: string;
}

Properties

type: "system" | "user_input" | "conversation" | "rag_ingest" | "web_search" | "inference"

Source type

reference?: string

Source reference (conversation ID, document ID, URL, etc.)

timestamp: string

Timestamp of extraction

method?: string

Extraction method