Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9b4f24c
wip
vladimir-a-sap Sep 11, 2026
269ffa9
Formatting
bot-sdk-js Sep 11, 2026
acc1719
wip
vladimir-a-sap Sep 15, 2026
91834ff
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
0936310
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
7b731ea
Formatting
bot-sdk-js Sep 17, 2026
5232ea5
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
86a5df6
Merge branch 'revisit-beta-annotations' of github.com:SAP/ai-sdk-java…
vladimir-a-sap Sep 17, 2026
077f104
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
aeff862
Formatting
bot-sdk-js Sep 17, 2026
d8e6b79
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
f720254
Merge branch 'revisit-beta-annotations' of github.com:SAP/ai-sdk-java…
vladimir-a-sap Sep 17, 2026
1275fe2
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
ab421b1
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
ced7576
Formatting
bot-sdk-js Sep 17, 2026
94176b7
actualize @beta annotations
vladimir-a-sap Sep 17, 2026
7f9a092
Merge branch 'revisit-beta-annotations' of github.com:SAP/ai-sdk-java…
vladimir-a-sap Sep 17, 2026
3e77308
Merge branch 'v2' into revisit-beta-annotations
vladimir-a-sap Sep 18, 2026
7cfe086
Formatting
bot-sdk-js Sep 18, 2026
9db0ff9
Merge branch 'v2' into revisit-beta-annotations
vladimir-a-sap Sep 23, 2026
0b30a71
address pr feedback and implement agreed refactoring changes
vladimir-a-sap Sep 23, 2026
d9aa679
address pr feedback, update release notes, remove few more @beta anno…
vladimir-a-sap Sep 24, 2026
81b5442
chore: [Orchestration] Remove deprecated API
CharlesDuboisSAP Sep 24, 2026
91cf772
update release notes
vladimir-a-sap Sep 24, 2026
dc4fa2e
improve code style
vladimir-a-sap Sep 24, 2026
b6c1bc0
remove message internal methods from public api
vladimir-a-sap Sep 24, 2026
fc7d6fa
revert deprecated constructor removal
vladimir-a-sap Sep 24, 2026
7f77230
polish the api
vladimir-a-sap Sep 24, 2026
ee65339
Formatting
bot-sdk-js Sep 24, 2026
de6ea34
fix checkstyle issue
vladimir-a-sap Sep 24, 2026
98e5453
Merge branch 'revisit-beta-annotations' of github.com:SAP/ai-sdk-java…
vladimir-a-sap Sep 24, 2026
6500572
Merge branch 'revisit-beta-annotations' into remove-deprecated
CharlesDuboisSAP Sep 25, 2026
ef5e822
Update AssistantMessage.java
CharlesDuboisSAP Sep 25, 2026
9065ca9
Merge branch 'v2' into remove-deprecated
CharlesDuboisSAP Sep 25, 2026
157002f
release notes
CharlesDuboisSAP Sep 25, 2026
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
1 change: 1 addition & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
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 internal `AssistantMessage(List<MessageToolCall> toolCalls)` please use `AssistantMessage.withToolCalls(List)` instead.
- [Orchestration] Removed deprecated models:
- `OrchestrationAiModel.IBM_GRANITE_13B_CHAT`
- `OrchestrationAiModel.MISTRAL_LARGE_INSTRUCT`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@ public class AssistantMessage extends Message {
* Creates a new assistant message with the given tool calls.
*
* @param toolCalls list of tool call objects
* @deprecated Please use {@link #withToolCalls(List)} instead.
*/
@Deprecated
public AssistantMessage(@Nonnull final List<MessageToolCall> toolCalls) {
AssistantMessage(@Nonnull final List<MessageToolCall> toolCalls) {
content = new MessageContent(List.of());
this.toolCalls = toolCalls;
reasoningContent = null;
Expand Down
Loading