Skip to content

SEOCHO | Ontology-Aligned Graph Memory

Layered ontology, graph memory, and runtime visual for SEOCHO

Ontology-aligned memory OS

Memory that keeps its shape.

SEOCHO turns ontology, graph facts, semantic queries, and agent runtime into one contract. Teams can inspect what an agent knows, why it knows it, and which relationships it is allowed to use.

Ontology allowed shapes
Graph stored evidence
Query bounded retrieval
Runtime agent access

Brand promise

A graph memory system with visible rules.

SEOCHO should feel closer to infrastructure than a demo app: compact, inspectable, and built around contracts that survive across local experiments, production runtimes, and open-source contribution.

Why this exists

Contract

Ontology first

Define the entity and relationship vocabulary before agents start writing memory.

Memory

Graph native

Persist facts, provenance, and constraints as relationships that can be inspected.

Answer

Evidence bound

Route questions through ontology and graph context before response synthesis.

Runtime

Agent ready

Expose the same contract through SDK calls, HTTP endpoints, traces, and policy checks.

First useful run

Prove one memory loop locally.

The shortest path should feel calm: define the ontology, add one record, ask one question, and inspect the graph contract before touching deployment.

copy-paste local path Python
from seocho import Seocho, Ontology, NodeDef, RelDef, Property

ontology = Ontology(
    name="work",
    nodes={
        "Person": NodeDef(properties={"name": Property(str, unique=True)}),
        "Company": NodeDef(properties={"name": Property(str, unique=True)}),
    },
    relationships={
        "WORKS_AT": RelDef(source="Person", target="Company"),
    },
)

client = Seocho.local(ontology, llm="mara/MiniMax-M2.5")
client.add("Marie Curie worked at the University of Paris.")
print(client.ask("Where did Marie Curie work?"))

System shape

Four surfaces, one contract.

Ontology contract

valid node, relationship, and property shapes

Graph memory

facts, provenance, constraints, and repair artifacts

Semantic query

ontology-aware retrieval before final answers

Runtime boundary

HTTP, traces, policy checks, and shared workspaces

Docs map

Read next

Open docs home

Writing

Field notes

Concepts, reasoning, and major release notes.

All posts

Project signal

Latest updates

Release-linked updates from the public GitHub trail.

Commits
  • 2026-06-13 Sync integration established. Awaiting first release. #init