feat: basic definition

This commit is contained in:
Junyan Qin
2025-07-06 10:25:28 +08:00
parent 8d28ace252
commit bef0d73e83
4 changed files with 122 additions and 0 deletions

View File

@@ -150,6 +150,16 @@ export interface KnowledgeBase {
updated_at?: string;
}
export interface ApiRespKnowledgeBaseFiles {
files: KnowledgeBaseFile[];
}
export interface KnowledgeBaseFile {
file_id: string;
file_name: string;
status: string;
}
// plugins
export interface ApiRespPlugins {
plugins: Plugin[];