Skip to main content

Dashboard Overview

The Memori Cloud dashboard at app.memorilabs.ai is where you manage API keys, test memory in real-time, and monitor usage.

Dashboard Sections

API Keys

Create and manage your Memori API keys. The free plan unlocks 5,000 memories created and 15,000 recalled per month.
1

Create a New API Key

  1. Open API keys in the dashboard sidebar
  2. Click Create API key
  3. Enter a descriptive name
  4. Click Create key
2

Copy the Key

The full key value is shown only once. Copy it and store it securely before clicking Continue.
Never commit API keys to version control. Treat API keys like passwords.
3

Set as Environment Variable

export MEMORI_API_KEY="your-memori-api-key"
API keys page with table and new API key modal

Playground

Chat with an AI and watch memories get extracted in real-time. The fastest way to understand how Memori works. Playground Layout:
  • Left navigation: Memories, API keys, Playground, Documentation, Settings
  • Center panel: Playground conversation and composer
  • Right column: Memory usage, Extracted memories, Memory graph with expand
Playground overview with conversation, memory usage, and memory graph Core Workflow:
1

Chat in Playground

Enter user details or preferences in the conversation.
2

Watch Memory Extraction

New records appear in Extracted memories as you chat.
3

Verify in Graph

See the same facts and relationships visualized in Memory graph.
4

Expand for Details

Use the graph expand control for deeper inspection when needed.
Memory Graph Features:
  • Nodes represent subjects and entities (e.g., User, Emma, Queens, NYC Juniors)
  • Edges show relation text (e.g., has name, lives in, plays as)
  • Expand icon opens a larger graph canvas for detailed exploration
Extracted memories panel showing normalized memory statements

Memories

Explore all memories created by your applications and agents with two view modes: Table View:
  • Memories tab: Individual memory rows with summary, entity ID, recalls, mentions, and timestamps
  • Subjects tab: Extracted entities/subjects with type filters and memory counts
  • Semantic search: Find relevant rows quickly
Memories table view with semantic search Knowledge Graph View:
  • Entities tab: Explore nodes and relationships visually
  • Search and filter: By time range and semantic queries
  • Associated memories: Trace back from entities to source memories
Entities knowledge graph view Memory Details Panel: Click any memory row to see:
  • Memory ID
  • Entity ID
  • Importance score
  • Created at
  • Last retrieved
  • Recalls count
  • Number of mentions
  • Associated subjects graph

Analytics

Monitor memory creation, recall activity, traffic trends, and quota usage. Key Metrics:
MetricDescription
Total memories createdTotal number of memory records created in the selected time range
Total entitiesNumber of unique extracted entities attached to memories
Total memories recalledNumber of memory retrieval events served
Cache hit ratePercentage of recall requests served from cache
Total conversationsNumber of conversation threads processed by Memori
Total sessionsNumber of distinct sessions in the selected range
Total usersNumber of distinct end users represented by tracked entities/sessions
Monthly quotaCurrent month usage vs monthly plan limit for created and recalled memories
Top subjectsRanked subjects/entities by memory volume with entity type tags
Analytics page with KPI cards, activity chart, and monthly usage How to Read Analytics:
1

Check KPI Cards

Start with the top KPI cards to understand overall volume and retrieval load.
2

Review Activity Trends

Check Activity and performance for traffic trends and directional changes (up/down percentages).
3

Monitor Quota Usage

Review Monthly usage to confirm distance from quota limits.
4

Identify Top Subjects

Use Top subjects to see which entities dominate memory creation.

Memory Usage Plans

PlanMemories Created / monthMemories Recalled / monthRequirements
Free (with API key)5,00015,000Sign up and create an API key at app.memorilabs.ai
Starter25,000100,000Sign up and subscribe
Pro150,000500,000Sign up and subscribe
EnterpriseCustomCustomContact sales

Getting Started with the Dashboard

1

Sign Up

Go to app.memorilabs.ai and create an account.
2

Create an API Key

Navigate to API Keys and generate your first key.
3

Try the Playground

Chat with an AI and see memories being extracted live.
4

Integrate

Copy your API key into your application code.
import os
from memori import Memori
from openai import OpenAI

client = OpenAI()
mem = Memori().llm.register(client)
mem.attribution(entity_id="user_123", process_id="my-agent")

Security Best Practices

Never commit API keys to version control. Treat API keys like passwords.
  • Store keys in environment variables or a secure secrets manager
  • Rotate keys immediately if you suspect exposure
  • Use separate keys for development, staging, and production
  • Monitor the Last used column to detect unauthorized usage

Build docs developers (and LLMs) love