mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:32:50 +00:00
Some checks failed
Deploy image by kubeconfig / build-fastgpt-docs-images (push) Has been cancelled
Deploy image to vercel / deploy-production (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Has been cancelled
Deploy image by kubeconfig / update-docs-image (push) Has been cancelled
Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
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;
|
|
};
|