Skip to content

Commit 1002c0b

Browse files
author
I750911
committed
Revert "update of available Models in OpenAiModel.java"
This reverts commit 4a656fb.
1 parent 14a090f commit 1002c0b

File tree

1 file changed

+4
-1
lines changed
  • foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@
1616
*/
1717
public record OpenAiModel(@Nonnull String name, @Nullable String version) implements AiModel {
1818

19+
/** Azure OpenAI dall-e-3 image generate model */
20+
public static final OpenAiModel DALL_E_3 = new OpenAiModel("dall-e-3", null);
21+
1922
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
2023
public static final OpenAiModel GPT_35_TURBO = new OpenAiModel("gpt-35-turbo", null);
2124

2225
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
23-
public static final OpenAiModel GPT_35_TURBO_0125 = new OpenAiModel("gpt-35-turbo-0125", null);
26+
public static final OpenAiModel GPT_35_TURBO_1025 = new OpenAiModel("gpt-35-turbo-0125", null);
2427

2528
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
2629
public static final OpenAiModel GPT_35_TURBO_16K = new OpenAiModel("gpt-35-turbo-16k", null);

0 commit comments

Comments
 (0)