Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/experiment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
description: Experiment name to run
required: true
type: string
concurrency:
description: Number of treatments to run in parallel
required: false
default: '1'
type: string

concurrency:
group: ${{ github.workflow }}-${{ inputs.experiment }}
Expand Down Expand Up @@ -34,10 +39,12 @@ jobs:
- name: Run experiment
env:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
CONCURRENCY: ${{ inputs.concurrency }}
EXPERIMENT_NAME: ${{ inputs.experiment }}
run: |
set -o pipefail
node packages/agent-eval/dist/cli.js \
--concurrency "$CONCURRENCY" \
--experiment "$EXPERIMENT_NAME" \
--artifacts artifacts
- name: Upload experiment results
Expand Down
Loading