Files
ragflow/web/src/interfaces/request/knowledge.ts

11 lines
240 B
TypeScript
Raw Normal View History

export interface ITestRetrievalRequestBody {
question: string;
similarity_threshold: number;
keywords_similarity_weight: number;
rerank_id?: string;
top_k?: number;
use_kg?: boolean;
highlight?: boolean;
kb_id?: string[];
}