This repository contains various AI agents developed for different purposes.
# create venv
python3 -m venv .venv
# activate (Linux/macOS)
source .venv/bin/activate
# on Windows PowerShell
# .venv\Scripts\Activate.ps1This makes .venv local to the repo and isolates packages from the system.[3][2]
With pip:
python -m pip install --upgrade pip
pip install -r requirements.txtUsing uv as a faster drop-in (optional):
uv pip install -r requirements.txtThe requirements.txt you already defined (pydantic, pydantic-settings, python-dotenv) will now be installed inside .venv, and any script run from the activated venv can import config and use get_settings().