mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-05 07:10:29 +08:00
* feat: add a run button to the document * feat: add knowledge configuration page * feat: remove KnowledgeSearching
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[]>;
|