350 lines
16 KiB
Markdown
350 lines
16 KiB
Markdown
# cAIc v0.17.2
|
||
|
||
Consumer AI hardware is a wasteland of incompatibility. NVIDIA speaks CUDA, AMD speaks ROCm. Your RTX 5070 Ti lives in one machine with 16 GB VRAM; your RX 6600 XT lives in another with 12 GB. Alone, neither can run a 14B model at usable speed. Together, they could — if the software stack didn't treat heterogeneous hardware as a bug instead of a feature.
|
||
|
||
cAIc is a cluster orchestration layer that fuses mismatched GPUs, CPUs, and machines into a single inference surface. It doesn't care that your worker runs AMD and your coordinator runs NVIDIA. It doesn't care that one machine has 8 GB VRAM and another has 16 GB. The cluster protocol (AMQP) discovers available hardware, triage routes queries to the right node, and swaps models between workers on demand. You get one chat interface; behind it, a pool of heterogeneous compute that behaves like a single AI server.
|
||
|
||
You might also be doing this with retired office PCs and GPUs from the Obama era. That works too. But the core problem cAIc solves isn't budget reuse — it's making non-homogeneous hardware cooperate.
|
||
|
||
### Architecture: CPU Coordinator + GPU Workers
|
||
|
||
cAIc splits the workload across two machine roles:
|
||
|
||
**Coordinator** (ultron — Ryzen 7 7840HS, no discrete GPU) runs the FastAPI app, RAG vector search (Qdrant), text embedding (Ollama on CPU), query triage (Phi-4-mini), web search (SearXNG), message broker (RabbitMQ), and all SQLite-backed services — memory, profiles, conversations, settings. Every CPU-bound task stays here.
|
||
|
||
**Workers** (jarvis — RX 6600 XT 12 GB / corsair — RTX 5070 Ti 16 GB) run only llama-server for GPU inference. The coordinator never touches a model; workers never touch the database. Workers register via AMQP, receive ping/pong health checks, and accept model-swap commands when triage determines a different model is needed for the current query.
|
||
|
||
This split keeps the UI responsive during inference (the coordinator isn't blocked by GPU compute) and lets workers focus VRAM entirely on model weights rather than browser sessions or API orchestration.
|
||
|
||
Under the hood: FastAPI + SQLite + Jinja2 on Python 3.13. Distributes inference across mismatched hardware via llama.cpp RPC with AMQP-mediated cluster coordination.
|
||
|
||
At v1.0, this ships with a Docker compose stack and setup wizard that detect CPU vs GPU, probe your hardware, and stand up SearXNG, Qdrant, RabbitMQ, and everything else with a single `docker compose up`. The same install docs work bare-metal for those who prefer to skip containers entirely.
|
||
|
||
Developer wiki: [docs/wiki/Home.md](docs/wiki/Home.md)
|
||
|
||
## What's New in v0.17.2
|
||
|
||
### Dynamic Model Swap — `request_model_swap()`, `select_node()` async (Roadmap N Task 14)
|
||
- **`cluster.py`** — `request_model_swap()` publishes `cmd.swap_model` to `jc.admin`; `handle_model_ready()` and `handle_model_failed()` consume `model_ready`/`model_failed` on `jc.system`
|
||
- **`select_node()` async** — Queries worker `inventory` for ideal model; triggers swap if model not active, returns `None` for fallback during swap
|
||
- **`SUBSCRIBE_TABLE`** — 7 AMQP routing key bindings in cluster.py
|
||
|
||
### Cluster Status UI — Heartbeat + Live Status Panel (Roadmap N Task 15)
|
||
- **`handle_heartbeat()`** — Consumes `node.*.heartbeat` on `jc.system` to update `last_seen` per node
|
||
- **UI cluster panel** — sidebar polls `GET /api/cluster` every 15s; green=active, yellow=swapping, red=error/offline
|
||
- **Version bumped to v0.17.0** — All 179 tests pass
|
||
|
||
### What's New in v0.14.0
|
||
|
||
### Cluster Protocol — `GET /api/cluster`, 9 AMQP Message Types (Roadmap N Task 11)
|
||
- **`cluster.py`** — Node registry (`CLUSTER_NODES`), bounded event log (`CLUSTER_EVENTS`, max 1000), coordinator auto-promotion
|
||
- **Ping/pong health** — No passive heartbeats; coordinator pings workers on-demand before routing work. 5s timeout → auto-deregister
|
||
- **9 message types** — register, deregister, admitted, rejected, ping, pong (on `jc.admin`); event, coord_query, coord_response (on `jc.system`)
|
||
- **`amqp.py` subscribe()** — Exclusive anonymous queues bound to routing keys; `_rebind_subscriptions()` recreates them on reconnect
|
||
- **`routers/cluster.py`** — `GET /api/cluster` returns nodes, coordinator, event log
|
||
|
||
### RAG Corpus Management — `POST /api/rag/flush`, `GET /api/rag/stats` (v0.13.0)
|
||
- **Score-based eviction** with hysteresis (80% high-water, 20% low-water) and pinned sources
|
||
- **Eviction engine** in `eviction.py` — scroll Qdrant, score by retrieval count + age, evict lowest scores first
|
||
- **Grace period** — vectors younger than 1 hour are never evicted
|
||
- **Flush endpoint** — `POST /api/rag/flush` (admin) deletes all non-pinned vectors
|
||
- **Stats endpoint** — `GET /api/rag/stats` (admin) returns vector count, at-risk count, pinned count, eviction rates
|
||
|
||
### File & Document Attachments (v1.9.0–v1.10.0)
|
||
- **`POST /api/upload`** — multipart file upload with PDF/text extraction; modes: `context` (chat injection), `ingest` (RAG corpus), `both`
|
||
- **`DELETE /api/upload/{id}`** — removes upload from SQLite + Qdrant
|
||
- **`PATCH /api/upload/{id}/link`** — associates upload with a conversation
|
||
- **`GET /api/upload/by-conversation/{id}`** — list attachments per conversation
|
||
- **Paperclip UI** — file picker, preview pill, image thumbnails, gallery overlay
|
||
- **Attachment indicators** — 📎 badge on conversations with attachments
|
||
- **Chat context injection** — `upload_context_id` prepends document text to system prompt
|
||
|
||
### Terminal RAG Hook — `POST /api/ingest` (v0.11.0)
|
||
- Bearer token auth (same key as `/v1/chat/completions`)
|
||
- Chunking via shared `chunk_text()` helper, embed via Ollama, upsert to Qdrant
|
||
- `caic-ingest.sh` — PROMPT_COMMAND shell script for autonomous terminal history ingestion
|
||
|
||
### v1.8.0 Foundation (refactor & fixes)
|
||
- **Modular refactor** — single-file `app.py` split into `config.py`, `db.py`, `auth.py`, `security.py`, `memory.py`, `search.py`, `rag.py`, `gpu.py`, and `routers/` package
|
||
- **Perplexity auto-search fixed** — `logprobs: true` now properly extracted from stream chunks
|
||
- **All `/api/models` endpoints** target `LLAMA_SERVER_BASE` (llama-server) not Ollama
|
||
- **RAG embedding** via Ollama at `http://192.168.50.210:11434`
|
||
- **Origin check** applies to all API methods, rejects absent Origin/Referer
|
||
|
||
## Features
|
||
|
||
- **Persistent Memory** — SQLite FTS5 full-text search for fast, relevant memory retrieval
|
||
- **Web Search** — SearXNG integration for automatic web lookups when the model is uncertain
|
||
- **Explicit Search** — Search button to force web search without waiting for model uncertainty
|
||
- **Profile Injection** — Custom system prompt injected into every conversation
|
||
- **System Presets** — Save and switch between different system prompts
|
||
- **Real-time Stats** — CPU, RAM, GPU, VRAM monitoring in sidebar
|
||
- **Token Thermometer** — Visual context window usage indicator
|
||
- **Streaming Responses** — Server-sent events for real-time token display
|
||
- **Conversation History** — SQLite-backed chat persistence with mass-delete option
|
||
- **Model Switching** — Change inference models on the fly
|
||
- **Skills Framework** — Built-in skill registry with per-skill enable/disable controls
|
||
|
||
## File Structure
|
||
|
||
```
|
||
/opt/caic/
|
||
├── amqp.py # aio-pika AMQP connection manager + subscribe/rebind
|
||
├── app.py # FastAPI app entry point
|
||
├── auth.py # PIN-based guest/admin sessions, auth routes
|
||
├── cluster.py # Cluster protocol: node registry, event log, ping/pong
|
||
├── config.py # Constants, env vars, limits, skill registry
|
||
├── db.py # SQLite schema, connection factory
|
||
├── eviction.py # Score-based RAG eviction engine
|
||
├── gpu.py # AMD GPU stats via rocm-smi
|
||
├── hardware.py # Hardware self-assessment (CPU, RAM, VRAM)
|
||
├── memory.py # FTS5 memory CRUD, remember/forget commands
|
||
├── rag.py # Qdrant vector search + system prompt assembly
|
||
├── search.py # SearXNG integration, perplexity, refusal detection
|
||
├── security.py # Rate limiting, origin checks, IP allowlist, audit
|
||
├── triage.py # Query classification + cluster node selection
|
||
├── routers/
|
||
│ ├── chat.py # /api/chat streaming endpoint
|
||
│ ├── cluster.py # Cluster status endpoint
|
||
│ ├── completions.py # /v1/chat/completions OpenAI-compat endpoint
|
||
│ ├── conversations.py# Conversation CRUD
|
||
│ ├── ingest.py # Terminal RAG ingest
|
||
│ ├── memories.py # Memory CRUD API
|
||
│ ├── models.py # Model listing, system stats
|
||
│ ├── presets.py # System prompt presets
|
||
│ ├── profile.py # User profile
|
||
│ ├── search_route.py # /api/search explicit search endpoint
|
||
│ ├── settings.py # Runtime settings
|
||
│ ├── skills.py # Skills management
|
||
│ └── upload.py # File attachment endpoints
|
||
├── static/
|
||
│ └── logo.png # Logo image (optional)
|
||
├── templates/
|
||
│ └── index.html # Frontend
|
||
├── node_agent/
|
||
│ ├── agent.py # Standalone worker agent (AMQP client)
|
||
│ └── requirements.txt
|
||
└── tests/ # 179 pytest tests
|
||
```
|
||
|
||
## Requirements
|
||
|
||
- Python 3.11+ (tested on 3.13)
|
||
- llama-server running locally or on network (OpenAI-compatible API on port 8081)
|
||
- SearXNG (optional, for web search)
|
||
- RabbitMQ (optional, for AMQP cluster — coordinator only)
|
||
- Qdrant (optional, for RAG vector search)
|
||
|
||
## Installation
|
||
|
||
### Fresh Install
|
||
|
||
```bash
|
||
# Create directory and venv
|
||
sudo mkdir -p /opt/caic
|
||
sudo chown $USER:$USER /opt/caic
|
||
cd /opt/caic
|
||
python3 -m venv venv
|
||
|
||
# Install dependencies
|
||
pip install fastapi uvicorn httpx psutil jinja2 python-multipart pypdf aio-pika
|
||
|
||
# Set admin PIN before first startup (4 digits)
|
||
export CAIC_ADMIN_PIN=4827
|
||
|
||
# Create subdirectories
|
||
mkdir -p templates static
|
||
|
||
# Copy files
|
||
# (copy all .py files to /opt/caic/)
|
||
# (copy routers/ directory to /opt/caic/)
|
||
# (copy templates/index.html to /opt/caic/templates/)
|
||
```
|
||
|
||
WARNING: Do not use `1234` as your admin PIN unless you accept weak local security.
|
||
|
||
NOTE: First boot requires `CAIC_ADMIN_PIN` unless you explicitly opt into insecure fallback with `CAIC_ALLOW_DEFAULT_PIN=true`.
|
||
|
||
## Systemd Service
|
||
|
||
Create `/etc/systemd/system/caic.service`:
|
||
|
||
```ini
|
||
[Unit]
|
||
Description=cAIc - Local Inference Web Interface
|
||
After=network.target
|
||
|
||
[Service]
|
||
Type=simple
|
||
User=caic
|
||
Group=caic
|
||
WorkingDirectory=/opt/caic
|
||
ExecStart=/opt/caic/venv/bin/uvicorn app:app --host 0.0.0.0 --port 8080
|
||
Restart=always
|
||
RestartSec=5
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
```
|
||
|
||
```bash
|
||
sudo systemctl daemon-reload
|
||
sudo systemctl enable caic
|
||
sudo systemctl start caic
|
||
```
|
||
|
||
## Memory Commands
|
||
|
||
In chat, natural language triggers memory operations:
|
||
|
||
| You say | What happens |
|
||
|---------|--------------|
|
||
| "remember that I prefer Rust over Go" | Stores as `preference` |
|
||
| "remember that cAIc runs on port 8080" | Stores as `infrastructure` |
|
||
| "note that the deadline is Friday" | Stores as `general` |
|
||
| "forget about the deadline" | Removes matching memories |
|
||
|
||
Memories are automatically searched based on your message content and injected into the system prompt when relevant.
|
||
|
||
### Memory Topics
|
||
|
||
Memories are auto-categorized:
|
||
- `preference` — likes, dislikes, choices
|
||
- `project` — active work, repos, tasks
|
||
- `infrastructure` — servers, services, configs
|
||
- `personal` — name, location, background
|
||
- `general` — everything else
|
||
|
||
## API Endpoints
|
||
|
||
### Completions (OpenAI-compatible)
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| POST | `/v1/chat/completions` | OpenAI-compatible chat (requires Bearer API key) |
|
||
|
||
### Chat & Search
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| POST | `/api/chat` | Send message (streaming SSE) |
|
||
| POST | `/api/search` | Explicit web search (streaming SSE) |
|
||
|
||
### File Upload & Ingest
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| POST | `/api/upload` | Upload file (multipart, admin) |
|
||
| DELETE | `/api/upload/{id}` | Delete upload (admin) |
|
||
| PATCH | `/api/upload/{id}/link` | Link upload to conversation (admin) |
|
||
| GET | `/api/upload/by-conversation/{id}` | List uploads for conversation |
|
||
| POST | `/api/ingest` | Ingest text into RAG (Bearer token auth) |
|
||
|
||
### Memory
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/memories` | List all memories |
|
||
| POST | `/api/memories` | Add memory |
|
||
| PUT | `/api/memories/{rowid}` | Update memory |
|
||
| DELETE | `/api/memories/{rowid}` | Delete memory |
|
||
| GET | `/api/memories/search?q=term` | Search memories |
|
||
| GET | `/api/memories/stats` | Get counts by topic |
|
||
|
||
### Cluster
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/cluster` | Cluster status (nodes, coordinator, event log) |
|
||
|
||
### RAG Management
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/rag/stats` | RAG corpus stats (admin) |
|
||
| POST | `/api/rag/flush` | Delete non-pinned vectors (admin) |
|
||
|
||
### Models & System
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/models` | List available models |
|
||
| GET | `/api/ps` | List loaded models |
|
||
| POST | `/api/show` | Get model info |
|
||
| GET | `/api/stats` | CPU, RAM, GPU, VRAM stats |
|
||
| GET | `/api/search/status` | SearXNG availability |
|
||
|
||
### Settings & Profile
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/profile` | Get profile content |
|
||
| PUT | `/api/profile` | Update profile (admin) |
|
||
| GET | `/api/profile/default` | Get default profile |
|
||
| GET | `/api/settings` | Get settings |
|
||
| PUT | `/api/settings` | Update settings (admin) |
|
||
|
||
### Conversations
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/conversations` | List conversations |
|
||
| POST | `/api/conversations` | Create conversation |
|
||
| GET | `/api/conversations/{id}` | Get conversation with messages |
|
||
| PUT | `/api/conversations/{id}` | Update conversation title/model |
|
||
| DELETE | `/api/conversations/{id}` | Delete conversation |
|
||
| DELETE | `/api/conversations` | Delete ALL conversations |
|
||
|
||
### Presets
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/presets` | List presets |
|
||
| POST | `/api/presets` | Create preset |
|
||
| PUT | `/api/presets/{id}` | Update preset |
|
||
| DELETE | `/api/presets/{id}` | Delete preset |
|
||
|
||
### Skills
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| GET | `/api/skills` | List all skills with state |
|
||
| GET | `/api/skills/active` | List active skills |
|
||
| PUT | `/api/skills/{key}` | Toggle skill enabled (admin) |
|
||
|
||
### Auth
|
||
|
||
| Method | Endpoint | Description |
|
||
|--------|----------|-------------|
|
||
| POST | `/api/auth/guest` | Create guest session |
|
||
| POST | `/api/auth/login` | Admin PIN login |
|
||
| POST | `/api/auth/logout` | Revoke session |
|
||
| GET | `/api/auth/session` | Check session validity |
|
||
| POST | `/api/auth/heartbeat` | Extend session TTL |
|
||
|
||
## Configuration
|
||
|
||
Settings are stored in the `settings` table and include:
|
||
|
||
- `profile_enabled` — Inject profile into chats (true/false)
|
||
- `search_enabled` — Auto web search (true/false)
|
||
- `memory_enabled` — Memory injection (true/false)
|
||
- `skills_enabled` — Skills framework (true/false)
|
||
- `default_model` — Default inference model
|
||
|
||
## Testing
|
||
|
||
```bash
|
||
python3 -m pytest tests/ -v
|
||
```
|
||
|
||
All 179 tests use `tmp_path` fixtures + monkeypatched `httpx.AsyncClient`/`aio-pika`. No external services needed.
|
||
|
||
## License
|
||
|
||
MIT
|
||
|
||
## Repository
|
||
|
||
Gitea: `ssh://gitea@llgit.llamachile.tube:1319/gramps/caic.git`
|