fix: wrong definition of topk

This commit is contained in:
WangCham
2025-08-11 23:22:36 +08:00
parent 146c38e64c
commit 457cc3eecd

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 {