cyberneticlibrary

Deploy apps to Vercel

vercel-cliskillsetup L229,740
nanocoai/nanoclaw
What it does

Build offline RAG pipeline with local embeddings and inference

Best for

Offline question-answering over confidential documents when zero cloud egress is a requirement.

Inputs
  • · document corpus
  • · user query
Outputs
  • · query-relevant chunks with ranks
  • · AI response with citations
Requires
  • · Ollama (local LLM)
  • · embedding model (nomic-embed-text)
  • · vector database (PGLite)
Preconditions
  • · Ollama running locally
  • · documents split into chunks
  • · embeddings indexed
Failure modes
  • · Ollama service down (fail-closed, no egress)
  • · poor chunk boundaries degrade retrieval
  • · embedding model mismatch between index and query
Trust signals
  • · local-only execution (no cloud API keys in prompts)
  • · vector search before LLM generation
  • · single-writer PGLite for freshness