Pensyve Cloud
Pensyve Cloud is the managed service at pensyve.com. Same engine, zero infrastructure. Sign up, grab an API key, and start remembering.
What You Get
| Feature | Description |
|---|---|
| Hosted API | api.pensyve.com — same REST API as self-hosted, managed for you |
| Dashboard | Real-time overview, memory browser, activity charts, usage stats |
| API Key Management | Create, revoke, and rotate keys from the dashboard |
| Three-Tier Billing | Pay only for what you use — standard, multimodal, and extraction operations |
| SSO | Sign in with GitHub, Google, or email magic links |
| Multi-region | Deployed on AWS us-east-2, with data residency guarantees |
Quick Start
1. Create an Account
Go to pensyve.com/sign-in and sign in with GitHub, Google, or email.
2. Create an API Key
Navigate to Dashboard → API Keys and click Create Key. Copy the key — it's only shown once.
3. Connect Your SDK
import pensyve
p = pensyve.Pensyve(
api_url="https://api.pensyve.com",
api_key="psk_your_key_here",
namespace="my-agent",
)import { Pensyve } from "pensyve";
const p = new Pensyve({
baseUrl: "https://api.pensyve.com",
apiKey: "psk_your_key_here",
});4. Start Remembering
p.remember(entity="user", fact="Prefers dark mode", confidence=0.9)
results = p.recall("UI preferences", entity="user")That's it. Check the dashboard to see your memories appear in real time.
Dashboard
The dashboard gives you visibility into your memory runtime:
- Overview — total memories, entity count, storage usage, P95 recall latency
- Activity Chart — recalls, remembers, and forgets over the last 30 days
- Memory Types — breakdown of episodic, semantic, and procedural memories
- Memory Browser — search, filter, and inspect individual memories with confidence scores and stability ratings
- Billing — usage meters for each operation tier, estimated cost, payment management
API Authentication
Every request to api.pensyve.com must include your API key:
Authorization: Bearer psk_your_key_hereKeys are scoped to your account and namespace. You can create multiple keys for different environments (dev, staging, production) and revoke them independently.
Pensyve Cloud runs the same open-source engine as self-hosted Pensyve. There's no vendor lock-in — export your data anytime and run it locally.
Self-Hosted vs. Cloud
| Self-Hosted | Pensyve Cloud | |
|---|---|---|
| Setup | Install + configure | Sign up + API key |
| Infrastructure | You manage | We manage |
| Storage | SQLite (local) | Postgres (managed) |
| Scaling | Manual | Automatic |
| Cost | Free (Apache 2.0) | Pay-per-operation |
| Data residency | Your machine | AWS us-east-2 |
| Support | Community | Priority |
Both options use the same SDKs, same API, same retrieval engine. Switch between them by changing a URL.