mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00
19 lines
457 B
TypeScript
19 lines
457 B
TypeScript
import { VectorModelItemType } from '../ai/model.d';
|
|
|
|
export type SelectedDatasetType = { datasetId: string; vectorModel: VectorModelItemType }[];
|
|
|
|
export type HttpBodyType<T = any> = {
|
|
appId: string;
|
|
chatId?: string;
|
|
responseChatItemId?: string;
|
|
variables: Record<string, any>;
|
|
data: T;
|
|
};
|
|
export type HttpQueryType = {
|
|
appId: string;
|
|
chatId?: string;
|
|
responseChatItemId?: string;
|
|
variables: Record<string, any>;
|
|
[key: string]: any;
|
|
};
|