2024-02-18 18:18:20 +08:00
|
|
|
export interface IThirdOAIModel {
|
|
|
|
|
available: boolean;
|
|
|
|
|
create_date: string;
|
|
|
|
|
create_time: number;
|
|
|
|
|
fid: string;
|
|
|
|
|
id: number;
|
|
|
|
|
llm_name: string;
|
|
|
|
|
max_tokens: number;
|
|
|
|
|
model_type: string;
|
|
|
|
|
status: string;
|
|
|
|
|
tags: string;
|
|
|
|
|
update_date: string;
|
|
|
|
|
update_time: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type IThirdOAIModelCollection = Record<string, IThirdOAIModel[]>;
|
2024-03-12 18:58:09 +08:00
|
|
|
|
|
|
|
|
export interface IFactory {
|
|
|
|
|
create_date: string;
|
|
|
|
|
create_time: number;
|
|
|
|
|
logo: string;
|
|
|
|
|
name: string;
|
|
|
|
|
status: string;
|
|
|
|
|
tags: string;
|
|
|
|
|
update_date: string;
|
|
|
|
|
update_time: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IMyLlmValue {
|
|
|
|
|
llm: Llm[];
|
|
|
|
|
tags: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface Llm {
|
|
|
|
|
name: string;
|
|
|
|
|
type: string;
|
|
|
|
|
used_token: number;
|
|
|
|
|
}
|