mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 16:33:49 +00:00
21 lines
401 B
TypeScript
21 lines
401 B
TypeScript
export type DeleteDatasetVectorProps = (
|
|
| { id: string }
|
|
| { datasetIds: string[]; collectionIds?: string[] }
|
|
| { idList: string[] }
|
|
) & {
|
|
teamId: string;
|
|
};
|
|
|
|
export type InsertVectorProps = {
|
|
teamId: string;
|
|
datasetId: string;
|
|
collectionId: string;
|
|
};
|
|
|
|
export type EmbeddingRecallProps = {
|
|
teamId: string;
|
|
datasetIds: string[];
|
|
// similarity?: number;
|
|
// efSearch?: number;
|
|
};
|