- Issue created by @abhinesh
Automatically closed - issue fixed for 2 weeks with no activity.
The AI provider module currently lacks support for the latest Claude 3.7 Sonnet model. Adding this model will ensure compatibility with the newest advancements in AI from Anthropic.
Navigate to the Drupal\ai_provider_anthropic\Plugin\AiProvider namespace.
Locate the section where available Claude models are listed.
Observe that Claude 3.7 Sonnet is missing from the list.
Modify the model list in the AiProvider plugin file to include Claude 3.7 Sonnet. The updated list should be:
return [
'claude-3-7-sonnet-20250219' => 'Claude 3.7 Sonnet',
'claude-3-5-sonnet-latest' => 'Claude 3.5 Sonnet',
'claude-3-5-haiku-latest' => 'Claude 3.5 Haiku',
'claude-3-opus-latest' => 'Claude 3 Opus',
'claude-3-sonnet-latest' => 'Claude 3 Sonnet',
'claude-3-haiku-latest' => 'Claude 3 Haiku',
];
Adding the change to the code.
No UI changes expected.
No breaking API changes; this is an addition to the existing model list.
No data model changes required.
Active
1.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.