Improve web ui

This commit is contained in:
Xin Wang
2026-02-07 14:28:54 +08:00
parent dc3130d387
commit 2725d2fe20
10 changed files with 232 additions and 94 deletions

View File

@@ -15,6 +15,10 @@ export interface Assistant {
configMode?: 'platform' | 'dify' | 'fastgpt' | 'none';
apiUrl?: string;
apiKey?: string;
llmModelId?: string;
asrModelId?: string;
embeddingModelId?: string;
rerankModelId?: string;
}
export interface Voice {
@@ -116,6 +120,7 @@ export enum TabValue {
GLOBAL = 'global',
VOICE = 'voice',
TOOLS = 'tools',
KNOWLEDGE = 'knowledge',
LINK = 'link'
}
@@ -166,4 +171,4 @@ export interface ASRModel {
language: string;
baseUrl: string;
apiKey: string;
}
}