mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-29 01:40:51 +00:00
20 lines
377 B
TypeScript
20 lines
377 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 = {
|
|
datasetIds: string[];
|
|
similarity?: number;
|
|
efSearch?: number;
|
|
};
|