All systems operational regioniad1 latency~24ms versionv0.7

Built on Helix-DB · Graph + Vector

Memory
and Knowledge
for AI Agents

Supersalience is a typed knowledge graph and long-lived memory backend for agentic systems. Sync observations, resolve canonical entities, recall what matters — across sessions, surfaces, and time.

Entities / user
<30ms
p50 recall
5
TTL buckets

01 // What it does

A backend for durable agent context.

01 · graph

Knowledge graph

Entities, relations, and observations with alias resolution, soft-merge, and TTL-bucketed expiry baked in.

02 · search

Semantic search

Polymorphic search over text, vectors, contacts, and seed entities — with neighborhood expansion to bounded depth.

03 · memory

Durable memory

Per-connection facts with categories, sources, and stability. Recall, summarize, update, forget.

04 · sessions

Session continuity

Conversation seed entities carry across turns so multi-step agents stay grounded without bespoke caching.

05 · ttl

Time-aware truth

Bucketed lifetimes — days, weeks, months, year+, indefinite — so stative facts expire instead of haunting your prompts.

06 · scale

Built on Helix

Storage and ANN vector search are powered by helix-db — the infinitely scalable graph-vector database, written in Rust.

02 // Quickstart

One endpoint. Three primitives.

POST /search
# Ask the graph what matters for a turn
curl -X POST https://supersalience.com/search \
  -H "authorization: Bearer $SUPERSALIENCE_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "user_id":     "connection_123",
    "session_id":  "thread_42",
    "query":       "what should I know about Ada before the meeting?",
    "limit":       10,
    "depth":       1
  }'
# Persist typed observations from a turn
curl -X POST https://supersalience.com/sync \
  -H "authorization: Bearer $SUPERSALIENCE_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "user_id": "connection_123",
    "entities": [
      { "name": "Ada Lovelace", "type": "person" },
      { "name": "Acme",         "type": "organization" }
    ],
    "relations": [
      { "source": "Ada Lovelace", "target": "Acme", "type": "works_at" }
    ],
    "observations": [
      { "subject": "Ada Lovelace", "text": "prefers async standups",
        "ttl_bucket": "months" }
    ]
  }'
# Recall durable per-connection facts
curl -X POST https://supersalience.com/memory/recall \
  -H "authorization: Bearer $SUPERSALIENCE_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "user_id":    "connection_123",
    "categories": ["preference", "identity"],
    "limit":      25
  }'

03 // Powered by

Storage layer

helix-db.com

The infinitely scalable graph-vector database, built in Rust. Supersalience is a typed knowledge and memory layer on top of helix-db, tuned for AI agent runtimes.