DB-GPT/web/types/model.ts
2025-03-19 11:51:50 +08:00

58 lines
1.1 KiB
TypeScript

import { ConfigurableParams } from '@/types/common';
export type IModelData = {
chat_scene: string;
model_name: string;
worker_type: string;
host: string;
port: number;
manager_host: string;
manager_port: number;
healthy: boolean;
check_healthy: boolean;
prompt_template: string;
last_heartbeat: string;
stream_api: string;
nostream_api: string;
};
export type BaseModelParams = {
host: string;
port: number;
model: string;
worker_type: string;
delete_after: boolean | null;
params: any;
};
export type ModelParams = {
[key: string]: string | number | boolean;
};
export type StartModelParams = {
host: string;
port: number;
model: string;
worker_type: string;
params: ModelParams;
};
export type SupportModel = {
model: string;
path: string;
worker_type: string;
path_exist: boolean;
proxy: boolean;
enabled: boolean;
host: string;
port: number;
params: ConfigurableParams;
provider: string;
description: string;
};
export interface ModelIconInfo {
label: string;
icon: string;
patterns?: string[]; // The patterns that the model name may contain
}