FastGPT/packages/service/common/vectorStore/controller.d.ts
Archer 2991c07467
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
Fix share page whisper auth (#1161)
Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
2024-04-09 21:38:47 +08:00

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;
};