File size: 351 Bytes
f3d0ebd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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[]>;
|