API minimal para gerar embeddings de texto com sentence-transformers.
Setup rápido:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# ou: poetry install
# rodar api
uvicorn app.main:app --reload --port 8000
# rodar testes
pytest -q