File size: 390 Bytes
d714fad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Agent } from './agent.entity';
export declare enum KnowledgeType {
    TEXT = "text",
    FAQ = "faq",
    DOCUMENT = "document",
    URL = "url"
}
export declare class KnowledgeItem {
    id: string;
    agent_id: string;
    title: string;
    content: string;
    type: KnowledgeType;
    search_vector: string;
    is_active: boolean;
    created_at: Date;
    agent: Agent;
}