Aller au contenu principal
Home

Agent memory for every deployment boundary

Eight practical patterns for explainable retrieval where agents already run — from browsers and robots to governed enterprise infrastructure.

01

Agentic Memory

Complete memory system for autonomous agents: semantic (vectors), episodic (graph), and structured data in one unified store.

  • Vector + Graph + Columns
  • Microsecond retrieval
  • Semantic + Episodic + Procedural memory
memory.remember("User prefers concise answers")
context = memory.recall("response preferences")
print(memory.why("why concise answers?"))

02

GraphRAG

Combine knowledge graph traversal with vector similarity for superior context retrieval. MATCH + NEAR in one query.

  • Knowledge Graph native
  • MATCH clause
  • Hybrid retrieval
SELECT fact.*, similarity()
FROM memories fact
WHERE vector NEAR $query
  AND MATCH (fact)-[:SUPPORTED_BY]->(source);

03

AI Desktop Apps

Build offline-capable AI applications with Tauri or Electron. Single binary, no server needed.

  • ~9 MB footprint
  • Works offline
  • Tauri v2 plugin
const results = await invoke("plugin:velesdb|search", {
  request: { collection: "memories", vector: embedding, topK: 10 }
});

04

Mobile AI (iOS/Android)

Native SDKs for mobile with 32x memory compression via Binary Quantization.

  • UniFFI bindings
  • ARM NEON SIMD
  • 32x compression
let db = try VelesDatabase.open(path: "agent.db")
let collection = try db.getCollection(name: "memories")!
let results = try collection.search(vector: embedding, limit: 10)

05

Browser Vector Search

Run vector search directly in the browser with WASM. Privacy-first, no backend required.

  • WASM-native
  • SIMD128 optimized
  • Data stays local
import init, { VectorStore } from "@wiscale/velesdb-wasm";
await init();
const store = new VectorStore(384, "cosine");

06

Robotics & Autonomous Systems

Keep vector and graph retrieval local to autonomous systems, without a mandatory network round trip.

  • Local retrieval
  • World model (Graph)
  • Offline-capable
SELECT * FROM observations
WHERE vector NEAR $sensor_embedding
LIMIT 5;

07

On-Premises / Air-Gapped

Keep memory within controlled infrastructure and build the governance controls required by your regulatory program.

  • 100% local data
  • No internet required
  • Evidence trails
velesdb-server --data-dir /secure/memory --host 127.0.0.1

08

Governed Multi-Agent Memory

Share tenant-scoped memory between agents and reconstruct the state available at a past decision time with Premium forensic replay.

  • Tenant-scoped memory
  • Forensic replay (Premium)
  • Audited operations
await fetch("/api/v1/memory/replay", {
  method: "POST",
  body: JSON.stringify({ decision, at, scope: "shared" })
}); // Premium