Merge pull request #12 from AlexanderWhitestone/claude/fix-quickstart-pip-E6LER

Add ollama and openai dependencies, update agno to sqlite variant
This commit is contained in:
Alexander Whitestone
2026-02-22 10:21:12 -05:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -223,6 +223,9 @@ Makefile # Common dev commands
**`connection refused` in chat** — run `ollama serve` in a separate terminal
**`ModuleNotFoundError: No module named 'sqlalchemy'`** — re-run install to pick up the updated `agno[sqlite]` dependency:
`make install`
**`ModuleNotFoundError: No module named 'dashboard'`** — activate the venv:
`source .venv/bin/activate && pip install -e ".[dev]"`

View File

@@ -10,7 +10,9 @@ readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"agno>=1.4.0",
"agno[sqlite]>=1.4.0",
"ollama>=0.3.0",
"openai>=1.0.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"jinja2>=3.1.0",