Skip to content

Commit 6f5aca4

Browse files
committed
Fixed Naming of the new models
1 parent 9d53974 commit 6f5aca4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
### ✨ New Functionality
2424

2525
- [Orchestration] Added support for [transforming a JSON output into an entity](https://sap.github.io/ai-sdk/docs/java/orchestration/chat-completion#json_schema)
26-
- [Orchestration] Added new models for `OrchestrationAiModel`: `MISTRAL_SMALL_INSTRUCT`, `GPT_4_1_MINI`, `GPT_4_1`, `GPT_4_1_NANO`
26+
- [Orchestration] Added new models for `OrchestrationAiModel`: `MISTRAL_SMALL_INSTRUCT`, `GPT_41_MINI`, `GPT_41`, `GPT_41_NANO`
2727
### 📈 Improvements
2828

2929
-

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ public class OrchestrationAiModel {
5252
public static final OrchestrationAiModel MISTRAL_LARGE_INSTRUCT =
5353
new OrchestrationAiModel("mistralai--mistral-large-instruct");
5454

55-
/**MistralAI Mistral Small Instruct model */
56-
public static final OrchestrationAiModel MISTRAL_SMALL_INSTRUCT =
57-
new OrchestrationAiModel("mistralai--mistral-small-instruct");
55+
/** MistralAI Mistral Small Instruct model */
56+
public static final OrchestrationAiModel MISTRAL_SMALL_INSTRUCT =
57+
new OrchestrationAiModel("mistralai--mistral-small-instruct");
5858

5959
/** MistralAI Mixtral 8x7B Instruct v01 model */
6060
public static final OrchestrationAiModel MIXTRAL_8X7B_INSTRUCT_V01 =
@@ -145,14 +145,14 @@ public class OrchestrationAiModel {
145145
/** Azure OpenAI GPT-4 model */
146146
public static final OrchestrationAiModel GPT_4 = new OrchestrationAiModel("gpt-4");
147147

148-
/**Azure OpenAI GPT-4.1-mini model */
149-
public static final OrchestrationAiModel GPT_4_1_MINI = new OrchestrationAiModel("gpt-4.1-mini");
148+
/** Azure OpenAI GPT-4.1-mini model */
149+
public static final OrchestrationAiModel GPT_41_MINI = new OrchestrationAiModel("gpt-4.1-mini");
150150

151-
/**Azure OpenAI GPT-4.1 model */
152-
public static final OrchestrationAiModel GPT_4_1 = new OrchestrationAiModel("gpt-4.1");
151+
/** Azure OpenAI GPT-4.1 model */
152+
public static final OrchestrationAiModel GPT_41 = new OrchestrationAiModel("gpt-4.1");
153153

154-
/**Azure OpenAI GPT-4.1-nano model */
155-
public static final OrchestrationAiModel GPT_4_1_NANO = new OrchestrationAiModel("gpt-4.1-nano");
154+
/** Azure OpenAI GPT-4.1-nano model */
155+
public static final OrchestrationAiModel GPT_41_NANO = new OrchestrationAiModel("gpt-4.1-nano");
156156

157157
/**
158158
* Azure OpenAI GPT-4 model

0 commit comments

Comments
 (0)