Update knowledge frontend

This commit is contained in:
Xin Wang
2026-02-09 07:36:47 +08:00
parent 7206c313d2
commit bdd5a7a274
3 changed files with 445 additions and 199 deletions

View File

@@ -44,6 +44,11 @@ export interface KnowledgeBase {
name: string;
creator: string;
createdAt: string;
description?: string;
embeddingModel?: string;
chunkSize?: number;
chunkOverlap?: number;
status?: string;
documents: KnowledgeDocument[];
}