Skip to content

Commit 795b7b4

Browse files
committed
Deprecated the MIXTRAL_8X7B_INSTRUCT_V01 model and added its replacement.
1 parent f2ec52e commit 795b7b4

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

docs/release_notes.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919
As a result, the accessors for fields `OrchestrationModuleConfig.inputTranslationConfig` and `OrchestrationModuleConfig.outputTranslationConfig` now handle the implementing class explicitly.
2020
The same applies to helper methods `DpiMasking#createConfig()` and `MaskingProvider#createConfig()`.
2121
- [Orchestration] `OrchestrationTemplate.withTemplate()` has been deprecated. Please use `OrchestrationTemplate.withTemplateMessages()` instead.
22-
- [Orchestration] Deprecated : `LLAMA3_1_70B_INSTRUCT`, `CLAUDE_3_SONNET`, `TITAN_TEXT_LITE`, `TITAN_TEXT_EXPRESS`, `GPT_4`, `GPT_4_0613`.
23-
-`GPT_4` and `GPT_4_0613` are replaced by : `GPT_40`or `GPT_41`.
22+
- [Orchestration] Deprecated : `LLAMA3_1_70B_INSTRUCT`, `CLAUDE_3_SONNET`, `TITAN_TEXT_LITE`, `TITAN_TEXT_EXPRESS`, `GPT_4`, `GPT_4_0613`, `MIXTRAL_8X7B_INSTRUCT_V01`.
23+
- `GPT_4` and `GPT_4_0613` are replaced by : `GPT_40`or `GPT_41`.
2424
- `CLAUDE_3_SONNET` is replaced by `CLAUDE_4_SONNET`.
25+
- `MIXTRAL_8X7B_INSTRUCT_V01` is replaced by `MISTRAL_SMALL_INSTRUCT`.
2526

2627
### ✨ New Functionality
2728

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,13 @@ public class OrchestrationAiModel {
5656
public static final OrchestrationAiModel MISTRAL_SMALL_INSTRUCT =
5757
new OrchestrationAiModel("mistralai--mistral-small-instruct");
5858

59-
/** MistralAI Mixtral 8x7B Instruct v01 model */
59+
/**
60+
* MistralAI Mixtral 8x7B Instruct v01 model
61+
*
62+
* @deprecated This model is deprecated on AI Core. The suggested replacement model is {@link
63+
* OrchestrationAiModel#MISTRAL_SMALL_INSTRUCT}.
64+
*/
65+
@Deprecated
6066
public static final OrchestrationAiModel MIXTRAL_8X7B_INSTRUCT_V01 =
6167
new OrchestrationAiModel("mistralai--mixtral-8x7b-instruct-v01");
6268

0 commit comments

Comments
 (0)