Setup instructions:
-
Set up
ANTHROPIC_API_KEYenvironment variable:export ANTHROPIC_API_KEY=your_api_key_here -
Install dependencies:
pip3 install . -
Run the agent:
python3 main.py -
Run the tests:
pytest -
All required changes belong in
task.py
The test suite supports both concurrent and sequential execution.
To change modes, edit the concurrent parameter at the bottom of main.py:
asyncio.run(main(concurrent=True))
asyncio.run(main(concurrent=False))When running concurrently, results print as they complete (not in run order) for faster overall execution.