Run eval on a set of parameters and save them as png and json #681
Workflow file for this run
This file contains 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: test | dynamic steps example | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [labeled, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run_dynamic_steps_example_test: | |
uses: ./.github/workflows/reusable_python_example.yml | |
with: | |
example-location: ./examples/python/dynamic_steps_example.py | |
secrets: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
GRAPHISTRY_USERNAME: ${{ secrets.GRAPHISTRY_USERNAME }} | |
GRAPHISTRY_PASSWORD: ${{ secrets.GRAPHISTRY_PASSWORD }} |