18 lines
355 B
Markdown
18 lines
355 B
Markdown
# WiseClaw Backend
|
|
|
|
FastAPI service for WiseClaw. The backend now includes:
|
|
|
|
- SQLite persistence through SQLAlchemy
|
|
- runtime/admin settings endpoints
|
|
- Ollama integration status endpoint
|
|
- Telegram polling runtime scaffold
|
|
|
|
## Run locally
|
|
|
|
```bash
|
|
python3.12 -m venv .venv312
|
|
source .venv312/bin/activate
|
|
pip install .
|
|
uvicorn app.main:app --reload
|
|
```
|