File tree 1 file changed +12
-7
lines changed
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change 8
8
type : choice
9
9
required : false
10
10
options :
11
- - core
12
- - grounding
11
+ - ai-api
12
+ - document- grounding
13
13
- orchestration
14
+ - prompt-registry
14
15
default : orchestration
15
16
file-ref :
16
17
description : " Branch or tag to checkout the spec file from"
@@ -62,18 +63,22 @@ jobs:
62
63
GH_ENTERPRISE_TOKEN : ${{ secrets.GH_TOOLS_TOKEN }}
63
64
run : |
64
65
case $CHOICE in
65
- core )
66
+ ai-api )
66
67
API_URL="$API_BASE_URL/cloudsdk/cloud-sdk-java-tests/contents/aicore.yaml?ref=$REF"
67
68
FILE_PATH='packages/ai-api/src/spec/AI_CORE_API.yaml'
68
69
;;
69
- grounding)
70
- # TODO
71
- exit 1
70
+ document- grounding)
71
+ API_URL="$API_BASE_URL/AI/rage-proxy-inference/contents/docs/public/business_api_hub/api_hub_merged_spec.yaml?ref=$REF"
72
+ FILE_PATH='packages/document-grounding/src/spec/api.yaml'
72
73
;;
73
74
orchestration)
74
75
API_URL="$API_BASE_URL/AI/llm-orchestration/contents/src/spec/api.yaml?ref=$REF"
75
76
FILE_PATH='packages/orchestration/src/spec/api.yaml'
76
77
;;
78
+ prompt-registry)
79
+ API_URL="$API_BASE_URL/AI/prompt-registry/contents/src/spec/prompt-registry.yaml?ref=$REF"
80
+ FILE_PATH='packages/prompt-registry/src/spec/prompt-registry.yaml'
81
+ ;;
77
82
esac
78
83
79
84
echo "Downloading $CHOICE specification file from $API_URL ..."
@@ -158,7 +163,7 @@ jobs:
158
163
## Definition of Done
159
164
160
165
- [ ] Unit / type tests cover new classes
161
- - [ ] Release notes updated
166
+ - [ ] Release notes / Changeset updated
162
167
") && echo "pr_url=$PR_URL" >> "$GITHUB_OUTPUT"
163
168
164
169
- name : Generate Job Summary
You can’t perform that action at this time.
0 commit comments