mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-21 15:36:48 +00:00
a138d5388a
* feat: Add reasoning effort configuration support * Add `reasoning_effort` parameter to model config and agent initialization * Support reasoning effort levels (minimal/low/medium/high) for Doubao/GPT-5 models * Add UI controls in input box for reasoning effort selection * Update doubao-seed-1.8 example config with reasoning effort support Fixes & Cleanup: * Ensure UTF-8 encoding for file operations * Remove unused imports * fix: set reasoning_effort to None for unsupported models * fix: unit test error * Update frontend/src/components/workspace/input-box.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
67 lines
1.6 KiB
TypeScript
67 lines
1.6 KiB
TypeScript
import type { AgentThreadContext } from "../threads";
|
|
|
|
export const DEFAULT_LOCAL_SETTINGS: LocalSettings = {
|
|
notification: {
|
|
enabled: true,
|
|
},
|
|
context: {
|
|
model_name: undefined,
|
|
mode: undefined,
|
|
reasoning_effort: undefined,
|
|
},
|
|
layout: {
|
|
sidebar_collapsed: false,
|
|
},
|
|
};
|
|
|
|
const LOCAL_SETTINGS_KEY = "deerflow.local-settings";
|
|
|
|
export interface LocalSettings {
|
|
notification: {
|
|
enabled: boolean;
|
|
};
|
|
context: Omit<
|
|
AgentThreadContext,
|
|
"thread_id" | "is_plan_mode" | "thinking_enabled" | "subagent_enabled"
|
|
> & {
|
|
mode: "flash" | "thinking" | "pro" | "ultra" | undefined;
|
|
reasoning_effort?: "minimal" | "low" | "medium" | "high";
|
|
};
|
|
layout: {
|
|
sidebar_collapsed: boolean;
|
|
};
|
|
}
|
|
|
|
export function getLocalSettings(): LocalSettings {
|
|
if (typeof window === "undefined") {
|
|
return DEFAULT_LOCAL_SETTINGS;
|
|
}
|
|
const json = localStorage.getItem(LOCAL_SETTINGS_KEY);
|
|
try {
|
|
if (json) {
|
|
const settings = JSON.parse(json);
|
|
const mergedSettings = {
|
|
...DEFAULT_LOCAL_SETTINGS,
|
|
context: {
|
|
...DEFAULT_LOCAL_SETTINGS.context,
|
|
...settings.context,
|
|
},
|
|
layout: {
|
|
...DEFAULT_LOCAL_SETTINGS.layout,
|
|
...settings.layout,
|
|
},
|
|
notification: {
|
|
...DEFAULT_LOCAL_SETTINGS.notification,
|
|
...settings.notification,
|
|
},
|
|
};
|
|
return mergedSettings;
|
|
}
|
|
} catch {}
|
|
return DEFAULT_LOCAL_SETTINGS;
|
|
}
|
|
|
|
export function saveLocalSettings(settings: LocalSettings) {
|
|
localStorage.setItem(LOCAL_SETTINGS_KEY, JSON.stringify(settings));
|
|
}
|