Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,48 @@
from public API
- [Orchestration] Internal AI SDK methods `createConfig` were removed from `GroundingProvider` and `MaskingProvider`
- [Orchestration] Internal AI SDK method `createMessage` was removed from `Message` class.
- [Orchestration] Removed deprecated models:
- `OrchestrationAiModel.IBM_GRANITE_13B_CHAT`
- `OrchestrationAiModel.MISTRAL_LARGE_INSTRUCT`
- `OrchestrationAiModel.MISTRAL_SMALL_INSTRUCT`
- `OrchestrationAiModel.MIXTRAL_8X7B_INSTRUCT_V01`
- `OrchestrationAiModel.LLAMA3_70B_INSTRUCT`
- `OrchestrationAiModel.LLAMA3_1_70B_INSTRUCT`
- `OrchestrationAiModel.CLAUDE_3_SONNET`
- `OrchestrationAiModel.CLAUDE_3_HAIKU`
- `OrchestrationAiModel.CLAUDE_3_OPUS`
- `OrchestrationAiModel.CLAUDE_3_5_SONNET`
- `OrchestrationAiModel.CLAUDE_3_7_SONNET`
- `OrchestrationAiModel.CLAUDE_4_SONNET`
- `OrchestrationAiModel.TITAN_TEXT_LITE`
- `OrchestrationAiModel.TITAN_TEXT_EXPRESS`
- `OrchestrationAiModel.GPT_35_TURBO`
- `OrchestrationAiModel.GPT_35_TURBO_16K`
- `OrchestrationAiModel.GPT_35_TURBO_0125`
- `OrchestrationAiModel.GPT_4`
- `OrchestrationAiModel.GPT_4_32K`
- `OrchestrationAiModel.GPT_4_0613`
- `OrchestrationAiModel.GPT_4O_MINI`
- `OrchestrationAiModel.OPENAI_O1`
- `OrchestrationAiModel.OPENAI_O3_MINI`
- `OrchestrationAiModel.GEMINI_1_0_PRO`
- `OrchestrationAiModel.GEMINI_1_5_PRO`
- `OrchestrationAiModel.GEMINI_1_5_FLASH`
- `OrchestrationAiModel.GEMINI_2_0_FLASH`
- `OrchestrationAiModel.GEMINI_2_0_FLASH_LITE`
- `OrchestrationAiModel.ALEPHALPHA_PHARIA_1_7B_CONTROL`
- `OrchestrationAiModel.DEEPSEEK_R1`
- [OpenAi] Removed deprecated models:
- `OpenAiModel.DALL_E_3`
- `OpenAiModel.GPT_35_TURBO`
- `OpenAiModel.GPT_35_TURBO_1025`
- `OpenAiModel.GPT_35_TURBO_16K`
- `OpenAiModel.GPT_4`
- `OpenAiModel.GPT_4_32K`
- `OpenAiModel.GPT_4O_MINI`
- `OpenAiModel.O3_MINI`
- `OpenAiModel.O1`
- `OpenAiModel.TEXT_EMBEDDING_ADA_002`

#### Prompt registry client Migration Guide

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,79 +16,9 @@
*/
public record OpenAiModel(@Nonnull String name, @Nullable String version) implements AiModel {

/**
* internal [Azure OpenAI dall-e-3 model]
*
* @deprecated This model is deprecated on AI Core.
*/
@Deprecated public static final OpenAiModel DALL_E_3 = new OpenAiModel("dall-e-3", null);

/**
* 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 OpenAiModel#GPT_4O_MINI}.
*/
@Deprecated public static final OpenAiModel GPT_35_TURBO = new OpenAiModel("gpt-35-turbo", null);

/**
* 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 OpenAiModel#GPT_4O_MINI}.
*/
@Deprecated
public static final OpenAiModel GPT_35_TURBO_1025 = new OpenAiModel("gpt-35-turbo-0125", null);

/**
* 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 OpenAiModel#GPT_4O_MINI}.
*/
@Deprecated
public static final OpenAiModel GPT_35_TURBO_16K = new OpenAiModel("gpt-35-turbo-16k", null);

/**
* Azure OpenAI GPT-4 model
*
* @deprecated This model is deprecated on AI Core with a planned retirement on 2025-09-01. The
* suggested replacement model is {@link OpenAiModel#GPT_4O} or {@link OpenAiModel#GPT_41}.
*/
@Deprecated public static final OpenAiModel GPT_4 = new OpenAiModel("gpt-4", null);

/**
* Azure OpenAI GPT-4 model
*
* @deprecated This model is deprecated on AI Core.
*/
@Deprecated public static final OpenAiModel GPT_4_32K = new OpenAiModel("gpt-4-32k", null);

/** Azure OpenAI GPT-4o model */
public static final OpenAiModel GPT_4O = new OpenAiModel("gpt-4o", null);

/**
* Azure OpenAI GPT-4o Mini model
*
* @deprecated This model is deprecated on AI Core. The suggested replacement model is {@link
* OpenAiModel#GPT_5_MINI}.
*/
@Deprecated public static final OpenAiModel GPT_4O_MINI = new OpenAiModel("gpt-4o-mini", null);

/**
* Azure OpenAI GPT-o3 Mini model
*
* @deprecated This model is deprecated on AI Core.
*/
@Deprecated public static final OpenAiModel O3_MINI = new OpenAiModel("o3-mini", null);

/**
* Azure OpenAI GPT-o1 model
*
* @deprecated This model is deprecated on AI Core.
*/
@Deprecated public static final OpenAiModel O1 = new OpenAiModel("o1", null);

/** Azure OpenAI Text Embedding 3 Large model */
public static final OpenAiModel TEXT_EMBEDDING_3_LARGE =
new OpenAiModel("text-embedding-3-large", null);
Expand Down Expand Up @@ -151,17 +81,6 @@ public record OpenAiModel(@Nonnull String name, @Nullable String version) implem
/** Azure OpenAI GPT-5.6-terra model */
public static final OpenAiModel GPT_56_TERRA = new OpenAiModel("gpt-5.6-terra", null);

/**
* Azure OpenAI Text Embedding ADA 002 model
*
* @deprecated This model is deprecated on AI Core with a planned retirement on 2025-10-03. The
* suggested replacement models are {@link OpenAiModel#TEXT_EMBEDDING_3_SMALL} and {@link
* OpenAiModel#TEXT_EMBEDDING_3_LARGE}.
*/
@Deprecated
public static final OpenAiModel TEXT_EMBEDDING_ADA_002 =
new OpenAiModel("text-embedding-ada-002", null);

/**
* Create a new instance of OpenAiModel with the provided version.
*
Expand Down
Loading
Loading