import { VectorModelItemType } from '../ai/model.d'; import { DYNAMIC_INPUT_KEY } from './constants'; export type SelectedDatasetType = { datasetId: string; vectorModel: VectorModelItemType }[]; export type HttpBodyType = { [DYNAMIC_INPUT_KEY]: Record; } & T; export type HttpQueryType = { appId: string; chatId?: string; responseChatItemId?: string; variables: Record; [key: string]: any; };