import { VectorModelItemType } from '../ai/model.d'; import { NodeInputKeyEnum } from './constants'; export type SelectedDatasetType = { datasetId: string }[]; export type HttpBodyType> = { // [NodeInputKeyEnum.addInputParam]: Record; } & T; export type HttpQueryType = { appId: string; chatId?: string; responseChatItemId?: string; variables: Record; [key: string]: any; }; /* http node */ export type HttpParamAndHeaderItemType = { key: string; type: string; value: string; };