mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-17 00:14:51 +00:00

Co-authored-by: Archer <545436317@qq.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
20 lines
341 B
TypeScript
20 lines
341 B
TypeScript
export type DeleteDatasetVectorProps = {
|
|
teamId: string;
|
|
|
|
id?: string;
|
|
datasetIds?: string[];
|
|
collectionIds?: string[];
|
|
idList?: string[];
|
|
};
|
|
|
|
export type InsertVectorProps = {
|
|
teamId: string;
|
|
datasetId: string;
|
|
collectionId: string;
|
|
};
|
|
|
|
export type EmbeddingRecallProps = {
|
|
datasetIds: string[];
|
|
similarity?: number;
|
|
};
|