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