Fixed bugs in solution 6 and 7 and minor alignment issues in the rest #4
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: "Module 7 — Multi-Agent" | |
| on: | |
| push: | |
| paths: | |
| - 'module7/**' | |
| - 'shared/**' | |
| workflow_dispatch: | |
| jobs: | |
| run-agent: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: pip install anthropic | |
| - name: Run Module 7 agent | |
| env: | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| run: python module7/agent.py | |
| - name: Upload output artifact | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: module7-output | |
| path: output/output_module7.json | |
| if-no-files-found: warn |