We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5f164b commit 66ba2dfCopy full SHA for 66ba2df
1 file changed
src/lib/agent/agent-interface.ts
@@ -667,10 +667,12 @@ export async function initializeAgent(
667
668
// audit-3000 needs Opus 4.7's depth for the multi-phase audit chain;
669
// every other workflow runs on Sonnet 4.6.
670
+ // Bare model IDs (no `anthropic/` prefix) so the LLM gateway's Bedrock
671
+ // fallback can match map_to_bedrock_model()'s strict lookup.
672
const model =
673
config.integrationLabel === 'audit-3000'
- ? 'anthropic/claude-opus-4-7'
- : 'anthropic/claude-sonnet-4-6';
674
+ ? 'claude-opus-4-6'
675
+ : 'claude-sonnet-4-6';
676
677
const agentRunConfig: AgentRunConfig = {
678
workingDirectory: config.workingDirectory,
0 commit comments