Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/evalgate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4

- name: Gate on eval regressions
uses: AgentPostmortem/evalgate@v1
uses: AgentPostmortem/evalgate@v0
with:
suite: examples/support-agent.eval.yaml
baseline: examples/support-agent.baseline.json
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: AgentPostmortem/evalgate@v1
- uses: AgentPostmortem/evalgate@v0
with:
suite: examples/support-agent.eval.yaml
baseline: examples/support-agent.baseline.json
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ runs:
if [ "${{ inputs.comment }}" = "true" ]; then COMMENT_FLAG="--comment"; fi

if [ -f "${{ inputs.baseline }}" ]; then
npx --yes evalgate@${{ inputs.version }} compare "${{ inputs.suite }}" \
npx --yes @royalpinto007/evalgate@${{ inputs.version }} compare "${{ inputs.suite }}" \
--base "${{ inputs.baseline }}" \
--provider "${{ inputs.provider }}" \
--tolerance "${{ inputs.tolerance }}" \
--md evalgate-report.md \
$MODEL_FLAG $COMMENT_FLAG
else
echo "No baseline at ${{ inputs.baseline }}; running the suite without a comparison."
npx --yes evalgate@${{ inputs.version }} run "${{ inputs.suite }}" \
npx --yes @royalpinto007/evalgate@${{ inputs.version }} run "${{ inputs.suite }}" \
--provider "${{ inputs.provider }}" \
--md evalgate-report.md \
$MODEL_FLAG
Expand Down
Loading