diff --git a/web/src/core/api/chat.ts b/web/src/core/api/chat.ts index 3309948..10fa5e0 100644 --- a/web/src/core/api/chat.ts +++ b/web/src/core/api/chat.ts @@ -19,6 +19,7 @@ export async function* chatStream( resources?: Array; auto_accepted_plan: boolean; enable_clarification?: boolean; + max_clarification_rounds?: number; max_plan_iterations: number; max_step_num: number; max_search_results?: number; diff --git a/web/src/core/store/store.ts b/web/src/core/store/store.ts index 34af095..521d72d 100644 --- a/web/src/core/store/store.ts +++ b/web/src/core/store/store.ts @@ -105,6 +105,7 @@ export async function sendMessage( resources, auto_accepted_plan: settings.autoAcceptedPlan, enable_clarification: settings.enableClarification ?? false, + max_clarification_rounds: settings.maxClarificationRounds ?? 3, enable_deep_thinking: settings.enableDeepThinking ?? false, enable_background_investigation: settings.enableBackgroundInvestigation ?? true,