We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8560c88 commit 38e29dcCopy full SHA for 38e29dc
.github/workflows/rollout.yml
@@ -17,6 +17,10 @@ on:
17
description: 'Base URL for the model API'
18
required: true
19
type: string
20
+ completion_params:
21
+ description: 'JSON completion params (optional, includes model_kwargs)'
22
+ required: false
23
+ type: string
24
25
jobs:
26
rollout:
@@ -43,4 +47,5 @@ jobs:
43
47
python tests/github_actions/rollout_worker.py \
44
48
--model "${{ inputs.model }}" \
45
49
--metadata '${{ inputs.metadata }}' \
46
- --model-base-url "${{ inputs.model_base_url }}"
50
+ --model-base-url "${{ inputs.model_base_url }}" \
51
+ ${{ inputs.completion_params && format('--completion-params ''{0}''', inputs.completion_params) || '' }}
0 commit comments