17 lines
351 B
TypeScript
17 lines
351 B
TypeScript
|
|
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[]>;
|