-
Notifications
You must be signed in to change notification settings - Fork 15
chore [Orchestration]: Update of available model list #280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| public static final OpenAiModel DALL_E_3 = new OpenAiModel("dall-e-3", null); | ||
|
|
||
| /** Azure OpenAI GPT-3.5 Turbo chat completions model */ | ||
| public static final OpenAiModel GPT_35_TURBO = new OpenAiModel("gpt-35-turbo", null); | ||
|
|
||
| /** Azure OpenAI GPT-3.5 Turbo chat completions model */ | ||
| public static final OpenAiModel GPT_35_TURBO_1025 = new OpenAiModel("gpt-35-turbo-0125", null); | ||
| public static final OpenAiModel GPT_35_TURBO_0125 = new OpenAiModel("gpt-35-turbo-0125", null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a breaking change. It has to stay. Can be optionally @Deprecated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. Just for my understanding, basically any change/deletion in naming or type of variables, functions, classes etc is always a breaking change, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes when it's public
This reverts commit 4a656fb.
Context
AI/ai-sdk-java-backlog#139
Updated model list for Orchestration (new
amazon--novamodels andgpt-35-turbo-0125) and OpenAI client (deletion ofdall-e-3). Added link and disclaimer for possible outdatedness to JavaDoc of both classes.Feature scope:
Definition of Done
Tests cover the scope aboveError handling created / updated & covered by the tests aboveAligned changes with the JavaScript SDKRelease notes updated