mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-18 17:51:24 +00:00
20 lines
358 B
TypeScript
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[];
|
|
};
|