Product Overview

May 21, 2026 · View on GitHub

Zvec Studio is a visual management tool for the Zvec embedded vector database — browse data, test queries, and manage schemas without writing code.

Target Users

RolePrimary Need
AI/ML developerBrowse vector data, test queries, debug embedding quality
Backend developerManage collection schemas, CRUD operations, troubleshoot data
Data engineerBatch import/export, inspect data distribution, evaluate performance
Evaluator / learnerExperience Zvec without code, understand vector DB concepts

Delivery Modes

Web + Desktop ship from the same codebase:

WebDesktop
Installpip install zvec-studioDownload installer
Python requiredYes (3.10+)No (embedded runtime)
Package size~5 MB~30 MB
Native featuresNoneFile picker, system notifications

Architecture

┌───────────────────────────────────────────────┐
│  Desktop (Tauri v2)          Web (Browser)    │
│  ┌────────────┐             ┌────────────┐    │
│  │ Rust shell │             │ Vite proxy │    │
│  │ + sidecar  │             │ /api/*     │    │
│  └─────┬──────┘             └─────┬──────┘    │
│        ▼                          ▼           │
│  ┌────────────────────────────────────────┐   │
│  │       React 18 SPA (frontend)         │   │
│  │  TanStack Query · react-router · i18n │   │
│  └──────────────────┬────────────────────┘   │
│                     │ HTTP                     │
│  ┌──────────────────┴────────────────────┐   │
│  │       FastAPI Backend (Python)         │   │
│  │  Zvec SDK · Pydantic · RFC 7807       │   │
│  └──────────────────┬────────────────────┘   │
│                     ▼                         │
│  ┌────────────────────────────────────────┐   │
│  │       Zvec (embedded vector DB)        │   │
│  │  Local file storage · no server        │   │
│  └────────────────────────────────────────┘   │
└───────────────────────────────────────────────┘

Tech Stack

LayerChoiceRationale
FrontendReact 18 + TypeScriptMature ecosystem, type safety
StateTanStack QueryServer-state best practice
BuildViteFast dev, Tauri integration
BackendFastAPI (Python)Zvec Python SDK is most complete; async + built-in OpenAPI
DesktopTauri v2Lightweight (~3 MB), native sidecar management
PackagingPyInstallerEmbeds Python runtime for desktop

API Design Principles

  • Resource-Oriented REST, aligned with SDK naming
  • OpenAPI-first: auto-generated TypeScript client
  • Single API layer consumable by any HTTP client
  • Versioned under /api/v1/
  • RFC 7807 errors with code + traceId

See api.md for the full reference.

Feature Status

Shipped (v0.1.x)

  • Collection CRUD with multi-vector fields, schema viewer, recent list
  • Schema evolution: add/drop/rename fields, create/drop indexes
  • Document browsing with filter expressions, pagination, detail drawer
  • Document operations: insert/upsert/update/delete (single + batch)
  • Multi-vector ANN search with filter, TopK, search history
  • AI extension: embedding & reranker management (6 embedding + 4 reranker types)
  • Collection maintenance: optimize, destroy
  • Dark/light theme
  • Onboarding wizard
  • Bilingual UI (English + Chinese)
  • Desktop app (macOS / Linux / Windows)

Planned

VersionFocus
v0.2.xData import/export, virtual scrolling, batch operations, advanced search
v0.3.xVector visualization (UMAP/t-SNE), clustering, AI Agent, SDK code generation
v0.4.xVS Code extension, API Playground, webhooks & notifications

Out of Scope

  • Cloud SaaS (Zvec is local-first)
  • RBAC (Zvec has no built-in permissions)
  • Cluster monitoring (Zvec is single-machine embedded)

Quality Baseline

  • Backend: 216 tests, 94% coverage
  • Frontend: 97 tests (Vitest + RTL)
  • Desktop: 6 Rust unit tests
  • E2E: Playwright smoke tests
  • Contract: Schemathesis OpenAPI fuzz testing

License

Apache License 2.0 (same as Zvec).