5-Minute Tutorial|No credit card required
Add AI Memory in 5 Minutes
Follow this step-by-step guide to give your AI persistent memory. Check each step as you complete it.
Progress0 / 5 steps
0%- Sign up or log in to your Seizn account
- Navigate to API Keys in the dashboard
- Click 'Create New Key' and copy your key
bash
npm install seizntypescript
import { Seizn } from 'seizn';
const client = new Seizn({ apiKey: process.env.SEIZN_API_KEY });
// Save a memory
const memory = await client.add({
content: "User prefers dark mode and concise responses",
memory_type: "preference",
tags: ["ui", "communication"]
});
console.log('Memory saved:', memory.id);typescript
// Search for relevant memories
const results = await client.search({
query: "What are the user's UI preferences?",
limit: 5,
threshold: 0.7
});
// Use memories in your AI prompt
for (const memory of results) {
console.log(`[${memory.similarity.toFixed(2)}] ${memory.content}`);
}You should see a response like this when searching for memories:
json
{
"success": true,
"results": [
{
"id": "mem_a1b2c3d4e5f6",
"content": "User prefers dark mode and concise responses",
"memory_type": "preference",
"tags": ["ui", "communication"],
"similarity": 0.94,
"created_at": "2026-01-15T10:30:00Z"
}
],
"count": 1,
"query_time_ms": 47
}Success!
Your AI now has persistent memory. Use the search results to enhance your AI's context and responses.