Skip to content

Commit 14a090f

Browse files
committed
Formatting
1 parent 37b0c27 commit 14a090f

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

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

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

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

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@
1212
/**
1313
* Large language models available in Orchestration.
1414
*
15-
* <p>
16-
* Please note that the template of models provided in this class might be outdated.
17-
* To check the latest availability of models in Orchestration, please refer to
18-
* <a href="https://me.sap.com/notes/3437766">SAP Availability of Generative AI Models </a>
19-
* and pay attention to the <i>Available in Orchestration</i> column.
20-
*
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.
2119
*/
2220
@Value
2321
@With
@@ -91,16 +89,15 @@ public class OrchestrationAiModel {
9189
new OrchestrationAiModel("amazon--titan-text-express");
9290

9391
/** Amazon Nova Pro model */
94-
public static final OrchestrationAiModel NOVA_PRO =
95-
new OrchestrationAiModel("amazon--nova-pro");
92+
public static final OrchestrationAiModel NOVA_PRO = new OrchestrationAiModel("amazon--nova-pro");
9693

9794
/** Amazon Nova Lite model */
9895
public static final OrchestrationAiModel NOVA_LITE =
99-
new OrchestrationAiModel("amazon--nova-lite");
96+
new OrchestrationAiModel("amazon--nova-lite");
10097

10198
/** Amazon Nova Micro model */
10299
public static final OrchestrationAiModel NOVA_MICRO =
103-
new OrchestrationAiModel("amazon--nova-micro");
100+
new OrchestrationAiModel("amazon--nova-micro");
104101

105102
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
106103
public static final OrchestrationAiModel GPT_35_TURBO = new OrchestrationAiModel("gpt-35-turbo");
@@ -111,7 +108,7 @@ public class OrchestrationAiModel {
111108

112109
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
113110
public static final OrchestrationAiModel GPT_35_TURBO_0125 =
114-
new OrchestrationAiModel("gpt-35-turbo-0125");
111+
new OrchestrationAiModel("gpt-35-turbo-0125");
115112

116113
/** Azure OpenAI GPT-4 chat completions model */
117114
public static final OrchestrationAiModel GPT_4 = new OrchestrationAiModel("gpt-4");

0 commit comments

Comments
 (0)