Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

### ✨ New Functionality

- [Orchestration] Added `MISTRAL_SMALL` to model list in `OrchestrationAiModel`.
- [Orchestration] Added `MISTRAL_SMALL` and `CLAUDE_4_7_OPUS` to model list in `OrchestrationAiModel`.

### 📈 Improvements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel CLAUDE_4_6_SONNET =
new OrchestrationAiModel("anthropic--claude-4.6-sonnet");

/** Anthropic Claude 4.7 Opus model */
public static final OrchestrationAiModel CLAUDE_4_7_OPUS =
new OrchestrationAiModel("anthropic--claude-4.7-opus");

/**
* Amazon Titan Text Lite model
*
Expand Down