Minimal examples to get started with enzu in under 5 minutes.
python_quickstart.py - Your first enzu call in 2 lines
from enzu import ask
print(ask("What is 2+2?"))python_budget_guardrails.py - Set spending limits
from enzu import run, Limits
result = run("Write a poem", limits=Limits(tokens=100, seconds=30, cost_usd=0.01))http_quickstart.sh - Call enzu via REST API
curl -X POST http://localhost:8080/v1/run \
-H "Content-Type: application/json" \
-d '{"task": "Summarize this text"}'enzu.md - Command-line interface documentation
Once you've run these examples, move to ../concepts/ to learn about budget enforcement and typed outcomes.