Guides
Common issues and their fixes — from missing SQLite to model download failures.
gno doctorgno doctor runs every health check GNO knows how to run and prints a report. Nine out of ten problems get diagnosed right here. Read its output carefully before anything else.
Symptom: gno vsearch or hybrid queries fail with a SQLite extension loading error.
Cause: the stock Apple SQLite doesn’t support loading extensions. GNO needs the Homebrew build.
brew install sqlite3
gno doctorSymptom: the first gno query or gno ask stalls during a model pull.
Solutions:
gno models pull explicitly to see real-time progress and errors.GNO_NO_AUTO_DOWNLOAD=1 and download model files by hand into the cache.gno models clean <preset>.Re-scan the index:
gno updateOr run gno daemon in the background for continuous indexing.
Vector-based search uses the embedding model that was active when the index was built. After switching embeddings, re-embed:
gno embed # re-embed everything
gno embed notes # or one collection
gno collection clear-embeddings notes # drop stale vectorsgno doctor output and the exact command you ran.