fix(webui): remove unused bot identity settings
This commit is contained in:
@@ -858,8 +858,6 @@ export async function updateSettings(
|
||||
query.set("context_window_tokens", String(update.contextWindowTokens));
|
||||
}
|
||||
if (update.timezone !== undefined) query.set("timezone", update.timezone);
|
||||
if (update.botName !== undefined) query.set("bot_name", update.botName);
|
||||
if (update.botIcon !== undefined) query.set("bot_icon", update.botIcon);
|
||||
if (update.toolHintMaxLength !== undefined) {
|
||||
query.set("tool_hint_max_length", String(update.toolHintMaxLength));
|
||||
}
|
||||
|
||||
@@ -490,8 +490,6 @@ export interface SettingsPayload {
|
||||
temperature: number;
|
||||
reasoning_effort: string | null;
|
||||
timezone: string;
|
||||
bot_name: string;
|
||||
bot_icon: string;
|
||||
tool_hint_max_length: number;
|
||||
};
|
||||
model_presets: Array<{
|
||||
@@ -1028,8 +1026,6 @@ export interface SettingsUpdate {
|
||||
modelPreset?: string | null;
|
||||
contextWindowTokens?: number;
|
||||
timezone?: string;
|
||||
botName?: string;
|
||||
botIcon?: string;
|
||||
toolHintMaxLength?: number;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user