-
Notifications
You must be signed in to change notification settings - Fork 15
chore: Update available modellist #384
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
Changes from all commits
74c0dc2
40df53f
28bb427
2f7a92b
e175153
1caa3a3
7dc87cf
50620a5
97e4639
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,7 +44,7 @@ public class OrchestrationAiModel { | |
| /** The version of the model, defaults to "latest". */ | ||
| String version; | ||
|
|
||
| /** IBM Granite 13B chat completions model */ | ||
| /** IBM Granite 13B Chat model */ | ||
| public static final OrchestrationAiModel IBM_GRANITE_13B_CHAT = | ||
| new OrchestrationAiModel("ibm--granite-13b-chat"); | ||
|
|
||
|
|
@@ -56,7 +56,13 @@ public class OrchestrationAiModel { | |
| public static final OrchestrationAiModel MIXTRAL_8X7B_INSTRUCT_V01 = | ||
| new OrchestrationAiModel("mistralai--mixtral-8x7b-instruct-v01"); | ||
|
|
||
| /** Meta Llama3 70B Instruct model */ | ||
| /** | ||
| * Meta Llama3 70B Instruct model | ||
| * | ||
| * @deprecated This model is deprecated on AI Core with a planned retirement on 2024-12-15. The | ||
| * suggested replacement model is {@link OrchestrationAiModel#LLAMA3_1_70B_INSTRUCT}. | ||
| */ | ||
| @Deprecated | ||
| public static final OrchestrationAiModel LLAMA3_70B_INSTRUCT = | ||
| new OrchestrationAiModel("meta--llama3-70b-instruct"); | ||
|
|
||
|
|
@@ -99,34 +105,59 @@ public class OrchestrationAiModel { | |
| public static final OrchestrationAiModel NOVA_MICRO = | ||
| new OrchestrationAiModel("amazon--nova-micro"); | ||
|
|
||
| /** Azure OpenAI GPT-3.5 Turbo chat completions model */ | ||
| /** | ||
| * Azure OpenAI GPT-3.5 Turbo model | ||
| * | ||
| * @deprecated This model is deprecated on AI Core with a planned retirement on 2025-02-13. The | ||
| * suggested replacement model is {@link OrchestrationAiModel#GPT_4O_MINI}. | ||
| */ | ||
| @Deprecated | ||
| public static final OrchestrationAiModel GPT_35_TURBO = new OrchestrationAiModel("gpt-35-turbo"); | ||
|
|
||
| /** | ||
| * Azure OpenAI GPT-3.5 Turbo chat completions model | ||
| * Azure OpenAI GPT-3.5 Turbo model | ||
| * | ||
| * @deprecated This model is not usable anymore. It is retired on AI Core since 2025-02-13. | ||
| * @deprecated This model is deprecated on AI Core with a planned retirement on 2025-02-13. The | ||
| * suggested replacement model is {@link OrchestrationAiModel#GPT_4O_MINI}. | ||
| */ | ||
| @Deprecated | ||
| public static final OrchestrationAiModel GPT_35_TURBO_16K = | ||
| new OrchestrationAiModel("gpt-35-turbo-16k"); | ||
|
|
||
| /** Azure OpenAI GPT-3.5 Turbo chat completions model */ | ||
| /** | ||
| * Azure OpenAI GPT-3.5 Turbo model | ||
| * | ||
| * @deprecated This model is deprecated on AI Core with a planned retirement on 2025-02-22. The | ||
| * suggested replacement model is {@link OrchestrationAiModel#GPT_4O_MINI}. | ||
| */ | ||
| @Deprecated | ||
| public static final OrchestrationAiModel GPT_35_TURBO_0125 = | ||
| new OrchestrationAiModel("gpt-35-turbo-0125"); | ||
|
|
||
| /** Azure OpenAI GPT-4 chat completions model */ | ||
| /** Azure OpenAI GPT-4 model */ | ||
| public static final OrchestrationAiModel GPT_4 = new OrchestrationAiModel("gpt-4"); | ||
|
|
||
| /** Azure OpenAI GPT-4-32k chat completions model */ | ||
| /** | ||
| * Azure OpenAI GPT-4 model | ||
| * | ||
| * @deprecated This model is deprecated on AI Core with a planned retirement on 2025-05-13. The | ||
| * suggested replacement model is {@link OrchestrationAiModel#GPT_4O}. | ||
|
Comment on lines
+143
to
+144
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Question) Just to confirm, we want to expose this dynamic information (deprecation date and replacement), rather than suggesting SAP Note directly? @jjtang1985?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was initially proposed by Till. |
||
| */ | ||
| @Deprecated | ||
| public static final OrchestrationAiModel GPT_4_32K = new OrchestrationAiModel("gpt-4-32k"); | ||
|
|
||
| /** Azure OpenAI GPT-4o chat completions model */ | ||
| /** Azure OpenAI GPT-4o model */ | ||
| public static final OrchestrationAiModel GPT_4O = new OrchestrationAiModel("gpt-4o"); | ||
|
|
||
| /** Azure OpenAI GPT-4o-mini chat completions model */ | ||
| /** Azure OpenAI GPT-4o-mini model */ | ||
| public static final OrchestrationAiModel GPT_4O_MINI = new OrchestrationAiModel("gpt-4o-mini"); | ||
|
|
||
| /** Azure OpenAI o1 model */ | ||
| public static final OrchestrationAiModel OPENAI_O1 = new OrchestrationAiModel("o1"); | ||
|
|
||
| /** Azure OpenAI o3-mini model */ | ||
| public static final OrchestrationAiModel OPENAI_O3_MINI = new OrchestrationAiModel("o3-mini"); | ||
|
|
||
| /** Google Cloud Platform Gemini 1.0 Pro model */ | ||
| public static final OrchestrationAiModel GEMINI_1_0_PRO = | ||
| new OrchestrationAiModel("gemini-1.0-pro"); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.