Skip to content

Commit 79afa70

Browse files
CharlesDuboisSAPMatKuhrjjtang1985
authored
Release notes 1.0.0 (#229)
* Added 1.0.0 release notes * Fixed release notes template * Real release notes * Fix header * Update docs/release-notes/release-notes-0-to-14.md Co-authored-by: Junjie Tang <[email protected]> --------- Co-authored-by: Matthias Kuhr <[email protected]> Co-authored-by: Junjie Tang <[email protected]>
1 parent f01f76e commit 79afa70

File tree

5 files changed

+30
-11
lines changed

5 files changed

+30
-11
lines changed

.pipeline/scripts/release_notes_automation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ def count_releases(filename):
6969
return count
7070

7171
def find_target_file(version):
72-
# release-notes-X-to-Y.mdx with every 15 versions the index increases by 15 and stays the same for 15 versions
72+
# release-notes-X-to-Y.md with every 15 versions the index increases by 15 and stays the same for 15 versions
7373
minor_version = int(version.split(".")[1])
7474
index = minor_version // 15 * 15
75-
return "release-notes-" + str(index) + "-to-" + str(index + 14) + ".mdx"
75+
return "release-notes-" + str(index) + "-to-" + str(index + 14) + ".md"
7676

7777
def write_release_notes(folder, target_file):
7878
absolute_target_file = os.path.join(folder, target_file)

.pipeline/scripts/release_notes_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
### 🐛 Fixed Issues
2222

23-
-
23+
-
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## 1.0.0 - December 03, 2024
2+
3+
[All Release Changes](https://github.com/SAP/ai-sdk-java/releases/tag/rel%2F1.0.0)
4+
5+
### ✨ New Functionality
6+
7+
- Introduce AI Core client to consume the [AI Core Rest APIs](https://api.sap.com/api/AI_CORE_API/overview).
8+
Here are a few features:
9+
- Artifact management: register and organize datasets and model artifacts.
10+
- Configuration management: set up configurations for various models and use cases.
11+
- Deployment management: deploy AI models and manage their lifecycle within SAP AI Core.
12+
- Introduce Orchestration client for consuming the following features of the orchestration service:
13+
- Harmonized LLM access via orchestration
14+
- Prompt templates
15+
- Content filtering
16+
- Masking
17+
- Introduce the OpenAI client to consume the following features:
18+
- Chat completion and streaming chat completion
19+
- Text
20+
- Images
21+
- Tools
22+
- Generate embeddings for input text.
23+
24+
> [!WARNING]
25+
> All model classes are generated or depend on changing specifications.
26+
> This means that model classes are not stable and may change in the future.

docs/release-notes/release-notes-0-to-14.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/release-notes/release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
### 🐛 Fixed Issues
2222

23-
-
23+
-

0 commit comments

Comments
 (0)