Daily Evals #635
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Daily Evals | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Run once a day at midnight UTC | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| run-evals: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup and Build | |
| uses: ./.github/actions/setup-and-build | |
| - name: Run evaluations | |
| env: | |
| ENVIRONMENT: ci | |
| BRAINTRUST_API_KEY: ${{ secrets.BRAINTRUST_API_KEY }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| GOOGLE_GENERATIVE_AI_API_KEY: ${{ secrets.GOOGLE_GENERATIVE_AI_API_KEY }} | |
| USE_OPENAI: false | |
| run: cd test-kitchen && npx braintrust eval initialGeneration.eval.ts |