Setup instructions:
-
Clone the repository:
git clone https://github.com/preferencemodel/hello-py.git -
Navigate to the project directory:
cd hello-py -
Set up
ANTHROPIC_API_KEYenvironment variable:export ANTHROPIC_API_KEY=your_api_key_here -
Run the agent:
uv run main.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.