1. Create and activate a virtual environment
python -m venv venv
source venv/bin/activate # macOS/Linux
# venv\Scripts\activate # Windows2. Install dependencies
pip install -r requirements.txt3. Configure your API key
Create a .env file in the project root:
ANTHROPIC_API_KEY=your_api_key_here
python tutorial_simple_QA.py