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
4 changes: 2 additions & 2 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

### ✨ New Functionality

- [Orchestration] Added `GEMINI_3_1_FLASH_LITE` to model list in `OrchestrationAiModel`.
- [Batch] Added a new `BatchesApi` client to access the [Batch Service API](https://github.tools.sap/AI/llm-batch-service).
- Added new OpenAI GPT-5.5 model: `OpenAiModel.GPT_55`and `OrchestrationAiModel.GPT_55`.
- [Orchestration] Added `GEMINI_3_1_FLASH_LITE`, `GEMINI_3_5_FLASH`, `GPT_55`, `SONAR_DEEP_RESEARCH`, and `LLAMA_CINDERELLA_DN` to model list in `OrchestrationAiModel`.
- [OpenAI] Added `GPT_55` to model list in `OpenAiModel`.

### 📈 Improvements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel LLAMA3_1_70B_INSTRUCT =
new OrchestrationAiModel("meta--llama3.1-70b-instruct");

/** Meta Llama Cinderella DN model */
public static final OrchestrationAiModel LLAMA_CINDERELLA_DN =
new OrchestrationAiModel("llama-cinderella-dn");

/** Cohere Command a Reasoning model */
public static final OrchestrationAiModel COHERE_COMMAND_A_REASONING =
new OrchestrationAiModel("cohere--command-a-reasoning");
Expand Down Expand Up @@ -409,6 +413,10 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel GEMINI_3_1_FLASH_LITE =
new OrchestrationAiModel("gemini-3.1-flash-lite");

/** Google Cloud Platform Gemini 3.5 Flash model */
public static final OrchestrationAiModel GEMINI_3_5_FLASH =
new OrchestrationAiModel("gemini-3.5-flash");

/**
* Alephalpha-pharia-1-7b-control model
*
Expand All @@ -434,6 +442,10 @@ public class OrchestrationAiModel {
/** Perplexity AI Sonar Pro model */
public static final OrchestrationAiModel SONAR_PRO = new OrchestrationAiModel("sonar-pro");

/** Perplexity AI Sonar Deep Research model */
public static final OrchestrationAiModel SONAR_DEEP_RESEARCH =
new OrchestrationAiModel("sonar-deep-research");

/** SAP ABAP 1 model */
public static final OrchestrationAiModel SAP_ABAP_1 = new OrchestrationAiModel("sap-abap-1");

Expand Down