System Archives

Neural Interface Protocols

Access the core documentation to integrate persistent memory into your agentic workflows.

01Initialize Connection

Package Installation

npm
1npm install memofai
pip
1pip install memofai

02Inject Memory

client.ts
1import { MemoryClient } from 'memofai';
2
3const client = new MemoryClient({
4 apiKey: process.env.MEMOF_API_KEY
5});
6
7// Store a new memory trace
8await client.add({
9 agentId: "agent-007",
10 content: "User prefers concise, JSON-formatted responses.",
11 tags: ["preference", "format"]
12});

Need Human Assistance?

Our engineers are standing by to help you architect your memory layer.