Merge pull request #1606 from langbot-app/feat/topk_splitter

Feat/topk splitter
This commit is contained in:
Junyan Qin (Chin)
2025-08-13 17:31:11 +08:00
committed by GitHub
28 changed files with 384 additions and 363 deletions
+2 -1
View File
@@ -61,7 +61,7 @@ export interface KnowledgeBase {
description: string;
embedding_model_uuid: string;
created_at?: string;
top_k?: number;
top_k: number;
}
export interface ApiRespProviderEmbeddingModels {
@@ -155,6 +155,7 @@ export interface KnowledgeBase {
name: string;
description: string;
embedding_model_uuid: string;
top_k: number;
created_at?: string;
updated_at?: string;
}