diff --git a/README.md b/README.md index 66884dd13..987537016 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,8 @@ Got everything in place? Let's move on!
⚙️ Backend Setup with uv -1. Install the [`uv`](https://github.com/astral-sh/uv) package manager (`pip install uv`). `uv` will download and manage Python 3.11 for you the first time you run a project command. -2. From the project root, install dependencies with `uv sync`. This creates `.venv/` (and fetches Python 3.11 automatically if needed). +1. Install the [`uv`](https://github.com/astral-sh/uv) package manager (`pip install uv`). `uv` will download and manage Python 3.12 for you the first time you run a project command. +2. From the project root, install dependencies with `uv sync`. This creates `.venv/` (and fetches Python 3.12 automatically if needed). 3. Set your OpenAI API key in the shell before running the server, for example `export OPENAI_API_KEY=sk-...`. 4. Start the backend directly from the project root with `uv run uvicorn api.app:app --reload` (or `uv run python api/app.py` for a one-off run). 5. Additional backend details live in `api/README.md`.