Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

4. LLM Agnostic

LocusGraph is LLM agnostic because the knowledge layer lives outside the model. The same Structured Agent Knowledge can be used with different LLMs, IDEs, agents, and orchestration frameworks without locking your knowledge to one provider.

LocusGraph sits between the agent and the LLM as a durable, LLM-agnostic knowledge layer.

What Stays the Same When You Swap Models

The model can change. The agent framework can change. The IDE can change. The knowledge graph stays the durable layer that carries forward what your agent has learned.

LayerOften changesLocusGraph behavior
LLM providerYesUnaffected — knowledge does not live in the model.
Agent frameworkYesUnaffected — graph is reachable from any framework.
IDE / clientYesUnaffected — same graph reachable over MCP.
Vector indexYesUnaffected — semantic retrieval lives inside LocusGraph.
Structured Agent KnowledgeNoPersists across all of the above.

How That's Achieved

LocusGraph exposes its operations through:

  • A typed HTTP API that any backend can hit.
  • SDKs in TypeScript, Python, and Rust for direct application use.
  • An MCP endpoint for any compatible client (Claude Code, Cursor, Amp, ChatGPT, custom).
  • Integrations like LangChain that adapt the graph to popular agent frameworks.

The same graph is reachable from all of them. A skill stored from your TypeScript backend is retrievable from Claude Code in the same project, because they both bind to the same graph_id.

LLM agnostic also means provider-cost agnostic. As pricing or capability shifts across models, you can switch without retraining or re-ingesting your accumulated agent knowledge.

Why This Compounds

Agent setups change every few months. Models get faster, cheaper, or more capable. Frameworks rise and fall. The teams that move fastest are the ones whose knowledge layer is not locked to any of those moving parts. LocusGraph is designed to be that durable substrate.

Next

5. vs. Other Memory Systems
What separates LocusGraph from Mem0, Zep, and vector recall.
MCP
Connect any compatible client to your graph.