balibabu
feat: remove KnowledgeSearching and add knowledge configuration page and add a run button to the document (#64)
f3d0ebd
raw
history blame
351 Bytes
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[]>;