Files
FastGPT/packages/service/common/vectorStore/controller.d.ts
2023-12-31 14:12:51 +08:00

20 lines
358 B
TypeScript

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