We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ae56f commit b606057Copy full SHA for b606057
backend/src/services/aws-bedrock.service.ts
@@ -65,7 +65,8 @@ export class AwsBedrockService {
65
this.defaultModel =
66
process.env.NODE_ENV === 'test'
67
? 'anthropic.claude-3-7-sonnet-20250219-v1:0'
68
- : (this.configService.get<string>('bedrock.model') ?? 'anthropic.claude-3-7-sonnet-20250219-v1:0');
+ : (this.configService.get<string>('bedrock.model') ??
69
+ 'anthropic.claude-3-7-sonnet-20250219-v1:0');
70
71
this.defaultMaxTokens =
72
0 commit comments