Visual Search at Your Fingertips

A local web dashboard for searching, browsing, creating, and editing documents. Full-featured markdown editor with live preview, keyboard shortcuts, and AI-powered answers—all running 100% locally.

Key Benefits

  • Split-view markdown editor with live preview
  • Quick capture for instant note creation
  • Create, edit, and delete documents
  • Visual search with BM25, vector, and hybrid modes
  • AI answers with citations
  • Keyboard-first design
  • Live preset switching
  • 100% local, no cloud

Example Commands

gno serve gno serve --port 8080

Get Started

Ready to try Web UI?

Your Knowledge, Visualized

Not everyone wants to live in the terminal. The GNO Web UI gives you a beautiful, fast interface to your local knowledge index. Right in your browser.

gno serve
# Open http://localhost:3000

Features

Document Editor

Create and edit documents directly in your browser:

  • Split-view editing: CodeMirror 6 editor with live markdown preview
  • Auto-save: Changes saved automatically with 2-second debounce
  • Quick capture: Press N anywhere to create a new note instantly
  • Syntax highlighting: Code blocks rendered with Shiki
  • Keyboard shortcuts: ⌘S to save, ⌘B for bold, ⌘I for italic

GNO Document Editor

Document Viewer

View documents with full context:

  • Outgoing links: See all wiki and markdown links from this document
  • Backlinks: Discover what documents link to this one
  • Related notes: AI-powered suggestions based on semantic similarity
  • Quick navigation: Click any link to jump to that document

GNO Document Viewer

Knowledge Graph

Visualize connections between your documents:

  • Interactive graph: Zoom, pan, and explore document relationships
  • Multiple edge types: Wiki links, markdown links, and similarity edges
  • Collection filtering: Focus on specific knowledge areas
  • Click to navigate: Jump to any document from the graph

GNO Knowledge Graph

Learn more about the Knowledge Graph →

Dashboard

See your index at a glance:

  • Document count: How much you’ve indexed
  • Chunk count: Searchable text segments
  • Health status: Is everything working?
  • Collections: Jump to any source

Three Search Modes

Choose the right tool for the job:

Mode Best For
BM25 Exact terms, code identifiers
Vector Concepts, natural language
Hybrid Best accuracy (recommended)

Tag Filtering

Filter search results visually with the tag system:

  • Sidebar facets: See all tags with document counts, click to filter
  • Filter chips: Active filters appear above results, click X to remove
  • Tag autocomplete: When editing, get suggestions from existing tags
  • AND/OR modes: Toggle between match-any and match-all filtering

Tags are extracted automatically from markdown frontmatter. Manage tags directly in the document editor or via the sidebar.

AI Answers

Type a question, get a cited answer:

“What did we decide about the authentication flow?”

GNO searches your documents, synthesizes an answer using a local LLM, and shows citations linking back to sources.

Live Preset Switching

Switch between model presets without restarting:

  • Slim: Default, fast, ~1GB disk
  • Balanced: Slightly larger, ~2GB disk
  • Quality: Best answers, ~2.5GB disk

Click the preset selector, choose your preference, and GNO reloads models automatically.

In-Browser Model Download

Missing models? Download them directly from the UI:

  1. Open the preset selector
  2. Click Download Models
  3. Watch the progress bar
  4. Start using AI features immediately

No terminal required. Everything happens in the browser.

Privacy by Design

Everything runs on localhost:

  • No cloud services
  • No user accounts
  • No data leaves your machine
  • No tracking or telemetry

The server binds to 127.0.0.1 only. It’s not accessible from your network.

Get Started

# Install GNO
bun install -g @gmickel/gno

# Index your documents
gno init ~/notes --name notes
gno index

# Start the web UI
gno serve

Then open http://localhost:3000.

For Developers

The Web UI is powered by a REST API you can use programmatically. Build custom integrations, automate workflows, or create your own tools.

# Search via API
curl -X POST http://localhost:3000/api/query \
  -H "Content-Type: application/json" \
  -d '{"query": "authentication"}'

See the API Reference for full documentation.