Skip to content

Commit 0a09373

Browse files
committed
Merge branch 'spec-update/orchestration/main' of https://github.com/SAP/ai-sdk-java into spec-update/orchestration/main
# Conflicts: # orchestration/src/main/java/com/sap/ai/sdk/orchestration/AssistantMessage.java # orchestration/src/main/java/com/sap/ai/sdk/orchestration/MessageContent.java # orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationChatResponse.java # orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationJacksonConfiguration.java # orchestration/src/main/java/com/sap/ai/sdk/orchestration/SystemMessage.java # orchestration/src/main/java/com/sap/ai/sdk/orchestration/UserMessage.java # orchestration/src/main/resources/spec/orchestration.yaml
2 parents 8ae0a58 + b68620a commit 0a09373

File tree

186 files changed

+7141
-4096
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+7141
-4096
lines changed

.github/workflows/spec-update.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ jobs:
8484
FILE_PATH='core/src/main/resources/spec/aicore.yaml'
8585
;;
8686
grounding)
87-
# TODO
88-
exit 1
87+
API_URL="$API_BASE_URL/AI/rage-proxy-inference/contents/docs/public/business_api_hub/api_hub_merged_spec.yaml?ref=$REF"
88+
FILE_PATH='core-services/document-grounding/src/main/resources/spec/grounding.yaml'
8989
;;
9090
orchestration)
9191
API_URL="$API_BASE_URL/AI/llm-orchestration/contents/src/spec/api.yaml?ref=$REF"
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "Weekly Spec Update"
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * SUN' # Every Sunday at midnight UTC
6+
7+
jobs:
8+
update-all-specs:
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
file:
14+
- core
15+
- grounding
16+
- prompt-registry
17+
18+
steps:
19+
- name: "Checkout repository"
20+
uses: actions/checkout@v4
21+
22+
- name: "Trigger spec update"
23+
run: |
24+
gh workflow run spec-update.yaml \
25+
--field file=${{ matrix.file }} \
26+
--field file-ref=main \
27+
--field create-pr=true
28+
env:
29+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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.7.0-SNAPSHOT</version>
7+
<version>1.9.0-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<artifactId>document-grounding</artifactId>

0 commit comments

Comments
 (0)