Skip to content

Commit aa58636

Browse files
feat: [Orchestration] Added GEMINI_2_5_FLASH_LITE model (#671)
1 parent fa7fe72 commit aa58636

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-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`.
15+
- [Orchestration] Added new models for `OrchestrationAiModel`: `SONAR`,`SONAR_PRO`, `GEMINI_2_5_FLASH_LITE`.
1616
- [Orchestration] Convenience for adding the `metadata_params` option to grounding calls.
1717

1818
### 📈 Improvements

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,10 @@ public class OrchestrationAiModel {
306306
public static final OrchestrationAiModel GEMINI_2_5_FLASH =
307307
new OrchestrationAiModel("gemini-2.5-flash");
308308

309+
/** Google Cloud Platform Gemini 2.5 Flash Lite model */
310+
public static final OrchestrationAiModel GEMINI_2_5_FLASH_LITE =
311+
new OrchestrationAiModel("gemini-2.5-flash-lite");
312+
309313
/** Google Cloud Platform Gemini 2.5 Pro model */
310314
public static final OrchestrationAiModel GEMINI_2_5_PRO =
311315
new OrchestrationAiModel("gemini-2.5-pro");

0 commit comments

Comments
 (0)