AIAny
AI Infra2025
Icon for item

RuVector

Combines a vector store, Cypher-style graph queries, and on-device LLM inference in one Rust engine, with a graph neural network that reranks results and adapts to query patterns in under a millisecond. Services ship as self-contained .rvf containers.

Introduction

Most vector databases are frozen at ingest time: you build the index once, and it never learns from how you actually query it. RuVector inverts that assumption. The index is wrapped in a graph neural network that keeps re-ranking against live query traffic, so retrieval quality drifts toward your real workload instead of staying static. And it keeps vectors, graph relationships, and the model consuming them inside one Rust process, with no Python in the hot path.

What Sets It Apart
  • Self-learning retrieval (SONA architecture with LoRA fine-tuning and GNN re-ranking, claimed sub-millisecond adaptation per query) means relevance tracks your usage without a re-index cycle.
  • One engine replaces a stack: HNSW vector search (sub-100µs per query, 18.9-77.9µs depending on k), Cypher graph queries with hyperedges, and a built-in GGUF inference runtime (ruvllm) instead of bolting a database, a graph store, and an inference server together.
  • The same code targets Node.js, the browser via WASM, PostgreSQL, native Rust, and IoT, so the embedded story and the server story are one binary rather than separate ports.
  • .rvf "cognitive containers" boot a full service in roughly 125ms, which makes cold-start and serverless deployment realistic rather than aspirational.
Who Should Use It

Great fit if you want retrieval that adapts to a live workload, need vector similarity and graph relationships answered in the same query, or want to push AI features to the edge and browser without standing up a separate inference service. Look elsewhere if you need a widely audited, production-hardened store for mission-critical data today: the project is young, effectively single-maintainer, and the headline numbers (sub-millisecond GNN adaptation, 15.7x inference speedup, post-quantum signatures) are largely self-reported rather than independently benchmarked.

Information

  • Websitegithub.com
  • OrganizationsrUv (Reuven Cohen)
  • AuthorsrUv (ruvnet)
  • Published date2025/11/19

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).