Skip to content

Commit 602bbe0

Browse files
TillK17I750911bot-sdk-js
authored
chore [Orchestration]: Update of available model list (#280)
* update of available models in OrchestrationAiModel.java * update of JavaDoc for Orchestration and OpenAI * update of available Models in OpenAiModel.java * Formatting * Revert "update of available Models in OpenAiModel.java" This reverts commit 4a656fb. --------- Co-authored-by: I750911 <[email protected]> Co-authored-by: SAP Cloud SDK Bot <[email protected]>
1 parent 4ba7069 commit 602bbe0

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/OpenAiModel.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
/**
88
* OpenAI models that are available in AI Core.
99
*
10+
* <p>Please note that the template of models provided in this class might be outdated. To check the
11+
* latest availability of OpenAI models in AI Core, please refer to <a
12+
* href="https://me.sap.com/notes/3437766">SAP Availability of Generative AI Models </a>.
13+
*
1014
* @param name The name of the model.
1115
* @param version The version of the model (optional).
1216
*/

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

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@
99
import lombok.Value;
1010
import lombok.With;
1111

12-
/** Large language models available in Orchestration. */
12+
/**
13+
* Large language models available in Orchestration.
14+
*
15+
* <p>Please note that the template of models provided in this class might be outdated. To check the
16+
* latest availability of models in Orchestration, please refer to <a
17+
* href="https://me.sap.com/notes/3437766">SAP Availability of Generative AI Models </a> and pay
18+
* attention to the <i>Available in Orchestration</i> column.
19+
*/
1320
@Value
1421
@With
1522
@AllArgsConstructor
@@ -81,13 +88,28 @@ public class OrchestrationAiModel {
8188
public static final OrchestrationAiModel TITAN_TEXT_EXPRESS =
8289
new OrchestrationAiModel("amazon--titan-text-express");
8390

91+
/** Amazon Nova Pro model */
92+
public static final OrchestrationAiModel NOVA_PRO = new OrchestrationAiModel("amazon--nova-pro");
93+
94+
/** Amazon Nova Lite model */
95+
public static final OrchestrationAiModel NOVA_LITE =
96+
new OrchestrationAiModel("amazon--nova-lite");
97+
98+
/** Amazon Nova Micro model */
99+
public static final OrchestrationAiModel NOVA_MICRO =
100+
new OrchestrationAiModel("amazon--nova-micro");
101+
84102
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
85103
public static final OrchestrationAiModel GPT_35_TURBO = new OrchestrationAiModel("gpt-35-turbo");
86104

87105
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
88106
public static final OrchestrationAiModel GPT_35_TURBO_16K =
89107
new OrchestrationAiModel("gpt-35-turbo-16k");
90108

109+
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
110+
public static final OrchestrationAiModel GPT_35_TURBO_0125 =
111+
new OrchestrationAiModel("gpt-35-turbo-0125");
112+
91113
/** Azure OpenAI GPT-4 chat completions model */
92114
public static final OrchestrationAiModel GPT_4 = new OrchestrationAiModel("gpt-4");
93115

0 commit comments

Comments
 (0)