mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 04:18:05 +00:00
fix(copilot): update fallback model ID to match catalog default
Address code review feedback: update outdated fallback model ID in copilot config form to use claude-sonnet-4-5-20250929
This commit is contained in:
@@ -55,7 +55,7 @@ export function useCopilotConfigForm() {
|
||||
const autoStart = localOverrides.autoStart ?? config?.auto_start ?? false;
|
||||
const port = localOverrides.port ?? config?.port ?? 4141;
|
||||
const accountType = localOverrides.accountType ?? config?.account_type ?? 'individual';
|
||||
const currentModel = localOverrides.model ?? config?.model ?? 'claude-opus-4-5-20250514';
|
||||
const currentModel = localOverrides.model ?? config?.model ?? 'claude-sonnet-4-5-20250929';
|
||||
const rateLimit = localOverrides.rateLimit ?? config?.rate_limit?.toString() ?? '';
|
||||
const waitOnLimit = localOverrides.waitOnLimit ?? config?.wait_on_limit ?? true;
|
||||
const opusModel = localOverrides.opusModel ?? config?.opus_model ?? '';
|
||||
|
||||
Reference in New Issue
Block a user