File tree Expand file tree Collapse file tree 5 files changed +30
-11
lines changed
Expand file tree Collapse file tree 5 files changed +30
-11
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ def count_releases(filename):
6969 return count
7070
7171def 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
7777def write_release_notes (folder , target_file ):
7878 absolute_target_file = os .path .join (folder , target_file )
Original file line number Diff line number Diff line change 2020
2121### 🐛 Fixed Issues
2222
23- -
23+ -
Original file line number Diff line number Diff line change 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.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2020
2121### 🐛 Fixed Issues
2222
23- -
23+ -
You can’t perform that action at this time.
0 commit comments