Skip to content
This repository was archived by the owner on Aug 2, 2026. It is now read-only.

Commit 36b4e1e

Browse files
committed
docs: update README, daemon API, and figures
1 parent 9ba0bee commit 36b4e1e

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ cp .env.example .env
6767
Then edit `.env`:
6868

6969
```ini
70-
# Option A — local Ollama (recommended, zero network, zero rate limits)
70+
# Option A — local Ollama (recommended, local-only embedding path)
7171
VEF_EMBEDDING_PROVIDER=ollama
7272
VEF_OLLAMA_EMBED_MODEL=nomic-embed-text
7373

docs/daemon-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Non-2xx status codes:
196196
| 422 | Pydantic validation error (body shape) |
197197
| 500 | Embedder error, ChromaDB error, generic unhandled exception |
198198

199-
## Rate limits
199+
## Throughput and guardrails
200200

201201
None. The daemon is local; there is no per-client throttling. Internally, ingestion is bounded by `VEF_CONCURRENCY` (default 10) and CPU/RAM guards.
202202

-12.4 KB
Loading

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Same root cause as above — mismatched embedding dimensions from provider switc
3939
Raycast aborts `/search` after 5 s by default. The daemon shouldn't take that long; if it does:
4040

4141
1. Check for concurrent ingest backpressure: `recall status` + `GET /progress`.
42-
2. Tail the log for slow embedder requests (Gemini rate limits, Ollama CPU).
42+
2. Tail the log for slow embedder requests (network/API latency or local Ollama CPU contention).
4343
3. Raise the client timeout: edit `raycast/src/lib/runner.ts``abortAfter(5000)`.
4444

4545
If you're on Gemini's free tier, switching to local Ollama (`VEF_EMBEDDING_PROVIDER=ollama`) removes the network round-trip entirely.

0 commit comments

Comments
 (0)