mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-21 03:10:50 +00:00
V4.6.6-2 (#673)
This commit is contained in:
19
packages/service/common/vectorStore/controller.d.ts
vendored
Normal file
19
packages/service/common/vectorStore/controller.d.ts
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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[];
|
||||
};
|
Reference in New Issue
Block a user