mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
21 lines
395 B
TypeScript
21 lines
395 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;
|
|
};
|