We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b4b63e commit a101b3fCopy full SHA for a101b3f
1 file changed
.github/workflows/rollout.yml
@@ -11,14 +11,10 @@ on:
11
description: 'Rollout ID for tracking'
12
required: true
13
type: string
14
- messages_b64:
15
- description: 'Base64 encoded JSON messages array'
+ prompt:
+ description: 'User prompt for the rollout'
16
17
18
- tools_b64:
19
- description: 'Base64 encoded JSON tools array (optional)'
20
- required: false
21
- type: string
22
23
jobs:
24
rollout:
@@ -46,8 +42,7 @@ jobs:
46
42
python tests/github_actions/rollout_worker.py \
47
43
--model "${{ inputs.model }}" \
48
44
--rollout-id "${{ inputs.rollout_id }}" \
49
- --messages-b64 "${{ inputs.messages_b64 }}" \
50
- ${{ inputs.tools_b64 && format('--tools-b64 "{0}"', inputs.tools_b64) || '' }}
45
+ --prompt "${{ inputs.prompt }}"
51
52
- name: Upload rollout trace
53
uses: actions/upload-artifact@v4
0 commit comments