Create and activate a virtual environment:
python -m venv venvFor Windows:
venv\Scripts\activateFor macOS/Linux:
source venv/bin/activateInstall the required Python packages:
pip install -r requirements.txtplaywright install
Run the ORM to create tables in the database:
python init_db.pyStart the FastAPI server:
uvicorn main:app --reload$env:AGENTQL_API_KEY="your-api-key"