CerebeCerebe Docs

Introduction

Cerebe is a cognitive services platform that gives your AI real memory, knowledge graphs, and meta-learning capabilities.

Welcome to Cerebe

Cerebe is the cognitive services platform for AI applications. It provides memory, knowledge graphs, and meta-learning through a simple API — giving your AI the ability to genuinely remember, reason, and learn.

Why Cerebe?

Most AI applications are stateless. Every conversation starts from scratch. Cerebe changes that:

  • Memory Fabric — Hybrid vector + graph memory that persists across sessions
  • Knowledge Graph — Temporal knowledge that evolves with full provenance
  • Meta-Learning — PLRE framework that understands how users learn
  • LLM Router — OpenAI-compatible chat with cognitive context enrichment

Quick Example

from cerebe import AsyncCerebe

client = AsyncCerebe(api_key="ck_live_...")

# Store a memory
await client.memory.add(
    content="User prefers visual explanations",
    user_id="user_123",
    session_id="session_abc",
)

# Later, in a different session...
results = await client.memory.search(
    query="What does the user prefer?",
    session_id="session_xyz",
)
# → "User prefers visual explanations"

Get Started

On this page