- Get ollama ready
ollama servethen, get your model
ollama pull gemma3:1b- Create environment
python -m venv .venv- Activate environment
. .venv/bin/activate- Install dependencies
pip install -r requirements.txt- Run tests
make testor
pytest -s ./tests/**- Run
uvicorn src.main:app --host 0.0.0.0 --port 8000 --reload