Skip to content

Commit 4a656fb

Browse files
author
I750911
committed
update of available Models in OpenAiModel.java
1 parent 9687c6f commit 4a656fb

File tree

1 file changed

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

1 file changed

+1
-4
lines changed

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

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

20-
/** Azure OpenAI dall-e-3 image generate model */
21-
public static final OpenAiModel DALL_E_3 = new OpenAiModel("dall-e-3", null);
22-
2320
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
2421
public static final OpenAiModel GPT_35_TURBO = new OpenAiModel("gpt-35-turbo", null);
2522

2623
/** Azure OpenAI GPT-3.5 Turbo chat completions model */
27-
public static final OpenAiModel GPT_35_TURBO_1025 = new OpenAiModel("gpt-35-turbo-0125", null);
24+
public static final OpenAiModel GPT_35_TURBO_0125 = new OpenAiModel("gpt-35-turbo-0125", null);
2825

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

0 commit comments

Comments
 (0)