mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
29 lines
669 B
TypeScript
29 lines
669 B
TypeScript
import type { DatasetDataIndexItemType, DatasetDataSchemaType } from './type';
|
|
|
|
export type CreateDatasetDataProps = {
|
|
teamId: string;
|
|
tmbId: string;
|
|
datasetId: string;
|
|
collectionId: string;
|
|
chunkIndex?: number;
|
|
q: string;
|
|
a?: string;
|
|
indexes?: Omit<DatasetDataIndexItemType, 'dataId'>[];
|
|
};
|
|
|
|
export type UpdateDatasetDataProps = {
|
|
dataId: string;
|
|
q?: string;
|
|
a?: string;
|
|
indexes?: (Omit<DatasetDataIndexItemType, 'dataId'> & {
|
|
dataId?: string; // pg data id
|
|
})[];
|
|
};
|
|
|
|
export type PatchIndexesProps = {
|
|
type: 'create' | 'update' | 'delete' | 'unChange';
|
|
index: Omit<DatasetDataIndexItemType, 'dataId'> & {
|
|
dataId?: string;
|
|
};
|
|
};
|