Brain-inspired, model-agnostic persistent memory for LLMs. Learn, recall, forget — like a brain. Works with OpenAI, Claude, Gemini, Llama.
Project description
CLS++ — Continuous Learning System++
Switch AI models. Never lose context.
Quick Start • Architecture • Documentation • Deployment • Contributing
What is CLS++?
Every LLM in production today operates with amnesia. Sessions end, context windows clear, and the model forgets everything—preferences, corrections, facts established over months.
CLS++ is an external memory substrate that solves this at its root. Drawing from neuroscientific Complementary Learning Systems (CLS) theory, it implements:
| Feature | Description |
|---|---|
| Four-store hierarchy | L0 (Working Buffer) → L1 (Indexing) → L2 (Schema Graph) → L3 (Deep Recess) |
| Biological consolidation | Salience, Usage, Authority, Conflict, Surprise signals |
| Sleep cycle | Nightly maintenance: rank, decay, deduplicate, consolidate |
| Reconsolidation gate | Belief revision only with evidence quorum |
| Model-agnostic | Any LLM plugs in via REST API—Claude, GPT-4, Gemini, Llama |
Memory is external to the model. Switch models anytime. No reset.
Quick Start
Install
pip install clsplusplus # Python (lightweight: only httpx + pydantic)
npm install clsplusplus # JavaScript / TypeScript (zero dependencies)
Python SDK
from clsplusplus import Brain
brain = Brain("alice")
# Teach it anything in natural language
brain.learn("I work at Google as a senior engineer")
brain.learn("I prefer Python over JavaScript")
# Ask it anything — semantic recall, not keyword matching
brain.ask("What's my job?") # ["I work at Google as a senior engineer"]
# Get LLM-ready context for any prompt
brain.context("coding help")
# "Known facts about this user:\n- I work at Google..."
# Forget (GDPR right to be forgotten)
brain.forget("I work at Google as a senior engineer")
JavaScript / TypeScript SDK
import { Brain } from "clsplusplus";
const brain = new Brain("alice");
await brain.learn("I work at Google as a senior engineer");
const facts = await brain.ask("What's my job?");
const context = await brain.context("coding help");
await brain.forget("I work at Google as a senior engineer");
Use with OpenAI
from clsplusplus import Brain
brain = Brain("alice")
# Wrap any LLM function — auto-injects memory, auto-learns
@brain.wrap
def chat(system_prompt, user_message):
return openai.chat(system=system_prompt, user=user_message)
response = chat("You are a helpful assistant", "Help me with Python")
# Brain auto-recalls relevant memory, injects into prompt,
# calls your LLM, learns from the exchange, returns response.
Full API
| Method | Description |
|---|---|
brain.learn(fact) |
Teach a fact. Returns memory ID. |
brain.ask(question) |
Query for relevant facts. Returns list. |
brain.context(topic) |
Get LLM-ready context string. |
brain.forget(fact) |
Forget by text or ID. |
brain.absorb(text) |
Bulk-learn from document or conversation. |
brain.who() |
Auto-generated user profile. |
brain.correct(old, new) |
Update a belief. |
brain.chat(message, llm) |
Full conversation handler with memory. |
brain.teach(dict) |
Learn from structured data. |
brain.watch(messages) |
Learn from chat message history. |
brain.wrap(fn) |
Wrap any LLM function with auto-memory. |
Run the Full Server Locally
git clone https://github.com/rajamohan1950/CLSplusplus.git
cd CLSplusplus
pip install -e ".[server]"
# Start infrastructure (Redis + PostgreSQL)
docker compose up -d redis postgres
# Start the API server
uvicorn clsplusplus.api:create_app --factory --host 0.0.0.0 --port 8080
Try It Live
Try the demo — Tell Claude something, ask OpenAI. Same memory. No sign-up.
Architecture
Client (any LLM) → POST /v1/memory/read (before inference)
↓
┌─────────────────────────┐
│ CLS++ Core Service │
│ L0: Working Buffer │ ← Prefrontal Cortex
│ L1: Indexing Store │ ← Hippocampus
│ L2: Schema Graph │ ← Neocortex
│ L3: Deep Recess │ ← Thalamus
│ Plasticity Engine │
│ Sleep Orchestrator │
└─────────────────────────┘
↓
POST /v1/memory/write (after inference)
SaaS Mode (Memory-as-a-Service)
Enable API key auth and rate limiting for production:
export CLS_API_KEYS=cls_live_xxxxxxxxxxxxxxxxxxxxxxxx
export CLS_REQUIRE_API_KEY=true
export CLS_RATE_LIMIT_REQUESTS=100
export CLS_RATE_LIMIT_WINDOW_SECONDS=60
Product endpoints: POST /v1/memories/encode, POST /v1/memories/retrieve, DELETE /v1/memories/forget, GET /v1/health/score. See SaaS docs.
Deployment
| Platform | Guide |
|---|---|
| Render (free tier) | Deploy in 1 click • Setup guide |
| AWS Free Tier | CloudFormation • Step-by-step |
| AWS | CloudFormation |
| Azure | ARM template |
Documentation
| Document | Description |
|---|---|
| API Reference | Endpoints, auth, examples |
| API Blueprint | SaaS API playbook (DX, security, billing) |
| SaaS Strategy | Memory-as-a-Service, pricing |
| Marketplace Integration | AWS, Azure, GCP, OCI |
| Productionization | Deployment, security, compliance |
| Commercialization | Go-to-market, licensing |
Status
Phase 1 (Foundation) — Complete
- Four stores (L0–L3) + Plasticity Engine
- Write/Read API + Python SDK
- Docker Compose + Render deploy
- Sleep cycle orchestrator
- Reconsolidation gate
- API key auth + rate limiting
- SaaS product endpoints
Contributing
We welcome contributions. See CONTRIBUTING.md and the Wiki for details.
License
Provisional patent filed October 2025. Apache 2.0 (see LICENSE).
AlphaForge AI Labs • Rajamohan Jabbala • 2026
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file clsplusplus-4.0.1.tar.gz.
File metadata
- Download URL: clsplusplus-4.0.1.tar.gz
- Upload date:
- Size: 371.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4cb437dec31a8bf5bf7c6a29a317cd931479bcd0b9dfc7fa92247a1d8f466d0
|
|
| MD5 |
faa9b3d93925dff9f2673cf29ec2c200
|
|
| BLAKE2b-256 |
a4530f21f5fb58b3c03607805913e0d4b089d9ce677d155d13c760ab55231e7a
|
Provenance
The following attestation bundles were made for clsplusplus-4.0.1.tar.gz:
Publisher:
publish-pypi.yml on rajamohan1950/CLSplusplus
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
clsplusplus-4.0.1.tar.gz -
Subject digest:
d4cb437dec31a8bf5bf7c6a29a317cd931479bcd0b9dfc7fa92247a1d8f466d0 - Sigstore transparency entry: 1243753018
- Sigstore integration time:
-
Permalink:
rajamohan1950/CLSplusplus@cf42b2b2c972930742a13beb5e151737ad799207 -
Branch / Tag:
refs/tags/v4.0.1 - Owner: https://github.com/rajamohan1950
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@cf42b2b2c972930742a13beb5e151737ad799207 -
Trigger Event:
push
-
Statement type:
File details
Details for the file clsplusplus-4.0.1-py3-none-any.whl.
File metadata
- Download URL: clsplusplus-4.0.1-py3-none-any.whl
- Upload date:
- Size: 202.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee40fcb5edda862d1facff5b61987b473cb61aa5f5547e33cf0a13cd74cac5fc
|
|
| MD5 |
8daa4c3a032c60fae06e640f3aac3c4d
|
|
| BLAKE2b-256 |
6972e2aaff096f52780d6b1ddf46b22f83624dc954f2159742856b9894ee8bfc
|
Provenance
The following attestation bundles were made for clsplusplus-4.0.1-py3-none-any.whl:
Publisher:
publish-pypi.yml on rajamohan1950/CLSplusplus
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
clsplusplus-4.0.1-py3-none-any.whl -
Subject digest:
ee40fcb5edda862d1facff5b61987b473cb61aa5f5547e33cf0a13cd74cac5fc - Sigstore transparency entry: 1243753022
- Sigstore integration time:
-
Permalink:
rajamohan1950/CLSplusplus@cf42b2b2c972930742a13beb5e151737ad799207 -
Branch / Tag:
refs/tags/v4.0.1 - Owner: https://github.com/rajamohan1950
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@cf42b2b2c972930742a13beb5e151737ad799207 -
Trigger Event:
push
-
Statement type: