Skip to content
Open
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 `CLAUDE_4_8_OPUS`, `QWEN_3_MAX`, `QWEN_3_6_PLUS` and `QWEN_3_6_FLASH` to the model list in `OrchestrationAiModel`.

### 📈 Improvements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,13 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel CLAUDE_3_SONNET =
new OrchestrationAiModel("anthropic--claude-3-sonnet");

/** Anthropic Claude 3 Haiku model */
/**
* Anthropic Claude 3 Haiku model
*
* @deprecated This model is deprecated on AI Core. The suggested replacement model is {@link
* OrchestrationAiModel#CLAUDE_4_5_HAIKU}.
*/
@Deprecated
public static final OrchestrationAiModel CLAUDE_3_HAIKU =
new OrchestrationAiModel("anthropic--claude-3-haiku");

Expand Down Expand Up @@ -167,7 +173,13 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel CLAUDE_4_5_OPUS =
new OrchestrationAiModel("anthropic--claude-4.5-opus");

/** Anthropic Claude 4 Sonnet model */
/**
* Anthropic Claude 4 Sonnet model
*
* @deprecated This model is deprecated on AI Core. The suggested replacement model is {@link
* OrchestrationAiModel#CLAUDE_4_5_SONNET}.
*/
@Deprecated
public static final OrchestrationAiModel CLAUDE_4_SONNET =
new OrchestrationAiModel("anthropic--claude-4-sonnet");

Expand All @@ -191,6 +203,10 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel CLAUDE_4_7_OPUS =
new OrchestrationAiModel("anthropic--claude-4.7-opus");

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

/**
* Amazon Titan Text Lite model
*
Expand Down Expand Up @@ -449,6 +465,16 @@ public class OrchestrationAiModel {
/** SAP ABAP 1 model */
public static final OrchestrationAiModel SAP_ABAP_1 = new OrchestrationAiModel("sap-abap-1");

/** Alibaba Qwen 3 max model */
public static final OrchestrationAiModel QWEN_3_MAX = new OrchestrationAiModel("qwen3-max");

/** Alibaba Qwen 3.6 plus model */
public static final OrchestrationAiModel QWEN_3_6_PLUS = new OrchestrationAiModel("qwen3.6-plus");

/** Alibaba Qwen 3.6 flash model */
public static final OrchestrationAiModel QWEN_3_6_FLASH =
new OrchestrationAiModel("qwen3.6-flash");

OrchestrationAiModel(@Nonnull final String name) {
this(name, Map.of(), "latest");
}
Expand Down