Every action your AI takes — logged, authorized, verifiable. 2 lines of code. Any model.
Same result as before — plus a verifiable, append-only audit trail. Every action recorded, every authorization tracked.
# Before Truvem result = openai.chat(messages) # After Truvem — same result + immutable proof result = truvem.log_action( agent_id="my-agent", model="gpt-4o", authorized_by="user@company.com", prompt=messages, result=result ) # Returns: action_id + proof_hash # (SHA-256, append-only)
Three pillars of trust for every AI action your agents take.
See the difference persistent memory makes for your AI agents.
| Scenario | ❌ Without Truvem | ✅ With Truvem |
|---|---|---|
| User returns after 1 week | Agent forgets everything. Starts from zero. | Agent remembers preferences, history, context. |
| Switch LLM model | All memory is lost. Locked to one model. | Memory is model-agnostic. Works with any LLM. |
| Multi-device usage | Context is fragmented across sessions. | One memory layer for all devices and sessions. |
| User experience | Repetitive. Frustrating. Feels dumb. | Continuous. Personal. Feels intelligent. |
| Developer setup | Build custom memory from scratch. Weeks of work. | 2 API calls. Working in 5 minutes. |
From customer support to personal assistants — Truvem gives any agent persistent memory.
Register once. Write memories. Read them back — from any session, any model, any machine.
from truvem import Truvem # One-time setup client = Truvem(api_key="your_key") # Save a memory client.remember( agent_id="my-agent", content="User prefers dark mode" ) # Recall — any session, any model memories = client.recall("my-agent") # {"status":"ok","memories":[...]}
No config. No embeddings. No infrastructure to manage. Just memory.
Sign in with GitHub or Google. Get a verified API key instantly. No credit card.
Call /memory/write with an agent ID and any string content.
Call /memory/read from any session, model, or device. Forever.
Model-agnostic by design. Pure REST — works with any language or framework.
Agent memories should be portable. Like email with SMTP, Truvem is built on TMX — an open standard anyone can implement.
Show that your agent is powered by Truvem. Join the ecosystem.
Sign in with a verified account. Takes 10 seconds. No credit card.
1 verified account = 1 free API key. No abuse possible.
Then: pip install truvem