Skip to content

Commit a4ff0cc

Browse files
feat: Update Models List (#644)
* Updating models list + formatting * Updating release notes * Removing Sonar from OpenAI
1 parent 516f909 commit a4ff0cc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-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-
-
15+
-[Orchestration] Added new models for `OrchestrationAiModel`: `SONAR`,`SONAR_PRO`.
1616

1717
### 📈 Improvements
1818

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,12 @@ public class OrchestrationAiModel {
318318
public static final OrchestrationAiModel DEEPSEEK_R1 =
319319
new OrchestrationAiModel("deepseek-ai--deepseek-r1");
320320

321+
/** Perplexity AI Sonar model */
322+
public static final OrchestrationAiModel SONAR = new OrchestrationAiModel("sonar");
323+
324+
/** Perplexity AI Sonar Pro model */
325+
public static final OrchestrationAiModel SONAR_PRO = new OrchestrationAiModel("sonar-pro");
326+
321327
OrchestrationAiModel(@Nonnull final String name) {
322328
this(name, Map.of(), "latest");
323329
}

0 commit comments

Comments
 (0)