mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-19 22:21:04 +08:00
11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
|
|
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[];
|
||
|
|
}
|