Skip to content
Merged
2 changes: 1 addition & 1 deletion frontend/lib/chat/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ const mcpClient = await createMCPClient({

# Model Configuration

Currently using: `us.anthropic.claude-sonnet-4-20250514-v1:0` via AWS Bedrock
Currently using: `us.anthropic.claude-opus-4-6-v1` via AWS Bedrock

## Data Flow Example

Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/chat/chart/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const chartColors = {
lines: [lfxColors.positive[500], lfxColors.negative[500], lfxColors.brand[300]],
},
};
const model = bedrock('us.anthropic.claude-sonnet-4-20250514-v1:0');
const model = bedrock('us.anthropic.claude-opus-4-6-v1');

export async function generateChartConfig(
results: Result[],
Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/chat/data-copilot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class DataCopilot {
private model: LanguageModelV1;

/** Bedrock model identifier */
private readonly BEDROCK_MODEL_ID = 'us.anthropic.claude-sonnet-4-20250514-v1:0';
private readonly BEDROCK_MODEL_ID = 'us.anthropic.claude-opus-4-6-v1';

/** Maximum number of auditor retry attempts */
private readonly MAX_AUDITOR_RETRIES = 1;
Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/chat/tests/auditor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('Auditor Agent', () => {
region: process.env.NUXT_AWS_BEDROCK_REGION,
});

const BEDROCK_MODEL_ID = 'us.anthropic.claude-sonnet-4-20250514-v1:0';
const BEDROCK_MODEL_ID = 'us.anthropic.claude-opus-4-6-v1';
model = bedrock(BEDROCK_MODEL_ID);
}, 30000);

Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/chat/tests/router.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('Router Agent', () => {
});

// Initialize model once, like DataCopilot does in constructor
const BEDROCK_MODEL_ID = 'us.anthropic.claude-sonnet-4-20250514-v1:0';
const BEDROCK_MODEL_ID = 'us.anthropic.claude-opus-4-6-v1';
model = bedrock(BEDROCK_MODEL_ID);

// Initialize MCP client to get real tools - same as DataCopilot
Expand Down