Knowledge graph
Entities, relations, and observations with alias resolution, soft-merge, and TTL-bucketed expiry baked in.
Built on Helix-DB · Graph + Vector
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, relations, and observations with alias resolution, soft-merge, and TTL-bucketed expiry baked in.
Polymorphic search over text, vectors, contacts, and seed entities — with neighborhood expansion to bounded depth.
Per-connection facts with categories, sources, and stability. Recall, summarize, update, forget.
Conversation seed entities carry across turns so multi-step agents stay grounded without bespoke caching.
Bucketed lifetimes — days, weeks, months, year+, indefinite — so stative facts expire instead of haunting your prompts.
Storage and ANN vector search are powered by helix-db — the infinitely scalable graph-vector database, written in Rust.
# 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 }'
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.