Files
FastGPT/packages/service/common/vectorStore/controller.d.ts
Archer c031e6dcc9 4.6.7-alpha commit (#743)
Co-authored-by: Archer <545436317@qq.com>
Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
2024-01-19 11:17:28 +08:00

20 lines
341 B
TypeScript

export type DeleteDatasetVectorProps = {
teamId: string;
id?: string;
datasetIds?: string[];
collectionIds?: string[];
idList?: string[];
};
export type InsertVectorProps = {
teamId: string;
datasetId: string;
collectionId: string;
};
export type EmbeddingRecallProps = {
datasetIds: string[];
similarity?: number;
};