Skip to content

Commit 0f2d61e

Browse files
Merge branch 'main' into apache
# Conflicts: # docs/release_notes.md
2 parents 45fa007 + 67762a4 commit 0f2d61e

File tree

9 files changed

+10
-30
lines changed

9 files changed

+10
-30
lines changed

core-services/document-grounding/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<artifactId>document-grounding</artifactId>

core-services/prompt-registry/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<artifactId>prompt-registry</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
</parent>
99
<artifactId>core</artifactId>
1010
<name>AI Core client</name>

docs/release_notes.md

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,6 @@
88

99
### 🔧 Compatibility Notes
1010

11-
- Some changes to existing generated API in the _Prompt Registry_ module.
12-
- Changes to existing generated API in the _Prompt Registry_ module.
13-
Generated methods now take additional (nullable) arguments.
14-
See full changelog for all details.
15-
- Minor changes to generated API of _SAP Grounding Service_.
16-
```diff
17-
var chunkMeta;
18-
var docMeta;
19-
var chunk =
20-
- TextOnlyBaseChunk.create().content("Luna is the Latin word for moon.").metadata(chunkMeta);
21-
+ TextOnlyBaseChunkCreate.create().content("Luna is the Latin word for moon.").addMetadataItem(chunkMeta);
22-
23-
- BaseDocument.create().chunks(chunk).metadata(docMeta);
24-
+ BaseDocument.create().chunks(chunk).addMetadataItem(docMeta);
25-
```
2611
- Remove Spring dependency, by migrating generated API clients from `RestTemplate` (Spring) to `Apache`:
2712

2813
| Aspect | Before | After | Migration |
@@ -35,16 +20,11 @@
3520

3621
### ✨ New Functionality
3722

38-
- [Grounding] Added `GroundingClient.withHeader()`.
39-
- [Orchestration] Added `GPT_52` model for `OrchestrationAiModel`.
40-
- [OpenAi] Added `GPT_52` model from `OpenAiModel`.
41-
- [Orchestration] Added `GEMINI_EMBEDDING` model for `OrchestrationEmbeddingModel`.
42-
- [Orchestration] Added citations for Perplexity `SONAR` model in `client.chatCompletion().getOriginalResponse().getFinalResult().getCitations()`
23+
-
4324

4425
### 📈 Improvements
4526

46-
- [Orchestration] Added new API `TranslationConfig#applyToPlaceholders` and `TranslationConfig#applyToTemplateRoles` to support partial translation for a message.
47-
- [RPT] `RptClient.tableCompletion()` GZIP compresses the request payload.
27+
-
4828

4929
### 🐛 Fixed Issues
5030

foundation-models/openai/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<groupId>com.sap.ai.sdk.foundationmodels</groupId>

foundation-models/sap-rpt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<groupId>com.sap.ai.sdk.foundationmodels</groupId>

orchestration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
</parent>
99
<artifactId>orchestration</artifactId>
1010
<name>Orchestration client</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.sap.ai.sdk</groupId>
55
<artifactId>sdk-parent</artifactId>
6-
<version>1.17.0-SNAPSHOT</version>
6+
<version>1.18.0-SNAPSHOT</version>
77
<packaging>pom</packaging>
88
<name>Parent pom</name>
99
<description>SAP Cloud SDK for AI is the official Software Development Kit (SDK) for SAP AI Core, SAP Generative AI Hub, and Orchestration Service. The parent pom defines dependency versions and plugin configurations</description>

sample-code/spring-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.sap.ai.sdk</groupId>
66
<artifactId>sdk-parent</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.18.0-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<groupId>com.sap.ai.sdk.app</groupId>

0 commit comments

Comments
 (0)