Skip to content

Commit 5bfabe9

Browse files
authored
chore: Add SAP ABAP 1 Model (#694)
1 parent e279ada commit 5bfabe9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### ✨ New Functionality
1414

15-
- [Orchestration] Added new models for `OrchestrationAiModel`: `SONAR`,`SONAR_PRO`, `GEMINI_2_5_FLASH_LITE`, `CLAUDE_4_5_HAIKU`, `GPT_REALTIME`.
15+
- [Orchestration] Added new models for `OrchestrationAiModel`: `SAP_ABAP_1`, `SONAR`,`SONAR_PRO`, `GEMINI_2_5_FLASH_LITE`, `CLAUDE_4_5_HAIKU`, `GPT_REALTIME`.
1616
- [Orchestration] Convenience for adding the `metadata_params` option to grounding calls.
1717
- [Orchestration] Added new models for `OrchestrationAiModel`: `COHERE_COMMAND_A_REASONING`, `NOVA_PREMIER`, `COHERE_RERANKER`.
1818
- [Orchestration] Deprecated `DEEPSEEK_R1` model from `OrchestrationAiModel` with no replacement.

orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationAiModel.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,9 @@ public class OrchestrationAiModel {
349349
/** Perplexity AI Sonar Pro model */
350350
public static final OrchestrationAiModel SONAR_PRO = new OrchestrationAiModel("sonar-pro");
351351

352+
/** SAP ABAP 1 model */
353+
public static final OrchestrationAiModel SAP_ABAP_1 = new OrchestrationAiModel("sap-abap-1");
354+
352355
OrchestrationAiModel(@Nonnull final String name) {
353356
this(name, Map.of(), "latest");
354357
}

0 commit comments

Comments
 (0)