mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
feat: remove KnowledgeSearching and add knowledge configuration page and add a run button to the document (#64)
* feat: add a run button to the document * feat: add knowledge configuration page * feat: remove KnowledgeSearching
This commit is contained in:
16
web/src/interfaces/database/llm.ts
Normal file
16
web/src/interfaces/database/llm.ts
Normal file
@ -0,0 +1,16 @@
|
||||
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[]>;
|
||||
Reference in New Issue
Block a user