mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-23 17:06:42 +08:00
74 lines
1.4 KiB
TypeScript
74 lines
1.4 KiB
TypeScript
export interface ITestRetrievalRequestBody {
|
|
question: string;
|
|
similarity_threshold: number;
|
|
vector_similarity_weight: number;
|
|
rerank_id?: string;
|
|
top_k?: number;
|
|
use_kg?: boolean;
|
|
highlight?: boolean;
|
|
kb_id?: string[];
|
|
meta_data_filter?: {
|
|
logic?: string;
|
|
method?: string;
|
|
manual?: Array<{
|
|
key: string;
|
|
op: string;
|
|
value: string;
|
|
}>;
|
|
semi_auto?: string[];
|
|
};
|
|
}
|
|
|
|
export interface IFetchKnowledgeListRequestBody {
|
|
owner_ids?: string[];
|
|
}
|
|
|
|
export interface IFetchKnowledgeListRequestParams {
|
|
id?: string;
|
|
page?: number;
|
|
page_size?: number;
|
|
ext?: {
|
|
keywords?: string;
|
|
owner_ids?: string[];
|
|
parser_id?: string;
|
|
};
|
|
}
|
|
|
|
export interface IFetchDocumentListRequestBody {
|
|
suffix?: string[];
|
|
run_status?: string[];
|
|
return_empty_metadata?: boolean;
|
|
metadata?: Record<string, string[]>;
|
|
ids?: string[];
|
|
}
|
|
|
|
export interface IFetchArtifactListRequestParams {
|
|
page?: number;
|
|
page_size?: number;
|
|
keywords?: string;
|
|
page_type?: string;
|
|
topic?: string;
|
|
}
|
|
|
|
export interface IFetchArtifactTopicListRequestParams {
|
|
page?: number;
|
|
page_size?: number;
|
|
keywords?: string;
|
|
}
|
|
|
|
export interface IFetchArtifactGraphRequestParams {
|
|
node?: string;
|
|
}
|
|
|
|
export interface IUpdateArtifactPageRequestBody {
|
|
content_md: string;
|
|
comments: string;
|
|
title?: string;
|
|
}
|
|
|
|
export interface IUpdateArtifactPageRequestParams {
|
|
pageType: string;
|
|
slug: string;
|
|
body: IUpdateArtifactPageRequestBody;
|
|
}
|