letta-api-client
Original:🇺🇸 English
Translated
26 scripts
Build applications with the Letta API — a model-agnostic, stateful API for building persistent agents with memory and long-term learning. Covers SDK patterns for Python and TypeScript. Includes 24 working code examples.
20installs
Sourceletta-ai/skills
Added on
NPX Install
npx skill4agent add letta-ai/skills letta-api-clientTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Letta API Client Skill
Build applications on top of the Letta API — a model-agnostic, stateful API for building persistent agents with memory and long-term learning. The Letta API powers Letta Code and the Learning SDK. This skill covers the core patterns for creating agents, managing memory, building custom tools, and handling multi-user scenarios.
When to Use This Skill
- Building applications that need persistent, stateful AI agents
- Creating chatbots, assistants, or autonomous agents with memory
- Integrating Letta into existing web/mobile applications
- Building multi-user applications where each user has their own agent
- Understanding the API layer that Letta Code and Learning SDK are built on
Quick Start
See getting-started.md for first-time setup and common onboarding issues.
SDK Versions Tested
Examples last tested with:
- Python SDK:
letta-client==1.7.1 - TypeScript SDK:
@letta-ai/letta-client@1.7.1
Core Concepts
1. Client Setup
See client-setup.md for initialization patterns:
- Letta Cloud vs self-hosted connections
- Environment variable management
- Singleton patterns for web frameworks
2. Memory Architecture
See memory-architecture.md for memory patterns:
- Core Memory Blocks: Always in-context (persona, human, custom blocks)
- Archival Memory: Large corpus with semantic search
- Conversation History: Searchable message history
- Shared Blocks: Multi-agent coordination
3. Custom Tools
See custom-tools.md for tool creation:
- Simple function tools with auto-generated schemas
- Tools with environment variable secrets
- BaseTool class for complex schemas
- Sandboxed execution requirements
4. Client-Side Tools
See client-side-tools.md for local tool execution:
- Execute tools on your machine while agent runs on Letta API
- How Letta Code runs Bash/Read/Write locally
- Approval-based flow with responses
type: "tool" - Access local files, databases, and private APIs
5. Client Injection & Secrets
See client-injection.md for server-side tool patterns:
- Pre-injected variable on Letta Cloud
client - Building custom memory tools that modify agent state
- Agent secrets via
os.getenv() - for self-referential tools
LETTA_AGENT_ID
6. Multi-User Patterns
See multi-user.md for scaling:
- One agent per user (personalization)
- Shared agent with Conversations API
- Identity system for user context
7. Streaming
See streaming.md for real-time responses:
- Basic SSE streaming
- Long-running operations with
include_pings - Background execution and resumable streams
8. Conversations
Conversations enable parallel sessions with shared memory:
- Thread-safe concurrent messaging (agents.messages.create is NOT thread-safe)
- Shared memory blocks across all conversations
- Separate context windows per conversation
- Use for: same user with multiple parallel tasks, multi-threaded applications
9. Sleeptime Agents
See sleeptime.md for background memory processing:
- Enable with
enable_sleeptime=True - Background agent refines memory between conversations
- Good for agents that learn over time
10. Agent Files & Folders
See agent-files.md for portability and file access:
- Export/import agents with files
.af - Attach folders to give agents document access
- Migration checklist for moving agents
11. Tool Rules
See tool-rules.md for constraining tool execution:
- - Force a tool to run first
InitToolRule - - Control which tools can follow
ChildToolRule - - End agent turn after tool
TerminalToolRule - Sequential pipelines and approval workflows
Quick Reference
Python SDK
bash
pip install letta-clientpython
from letta_client import Letta
# Cloud
client = Letta(api_key="LETTA_API_KEY")
# Self-hosted
client = Letta(base_url="http://localhost:8283")TypeScript SDK
bash
npm install @letta-ai/letta-clienttypescript
import { Letta } from "@letta-ai/letta-client";
// Cloud
const client = new Letta({ apiKey: process.env.LETTA_API_KEY });
// Self-hosted
const client = new Letta({ baseUrl: "http://localhost:8283" });Examples
See the directory for runnable code:
examples/Python:
- - Client initialization
01_basic_client.py - - Agent creation with memory blocks
02_create_agent.py - - Basic custom tool
03_custom_tool_simple.py - - Tool with environment variables
04_custom_tool_secrets.py - - Basic messaging
05_send_message.py - - Streaming responses
06_send_message_stream.py - - Multi-user patterns
07_multi_user.py - - Archival memory operations
08_archival_memory.py - - Multi-agent shared memory
09_shared_blocks.py - - Parallel sessions with conversations
10_conversations.py - - Custom memory tools with injected client
11_client_injection.py - - Constraining tool execution order
12_tool_rules.py - - Execute tools locally (like Letta Code)
13_client_side_tools.py
TypeScript:
- - Client initialization
01_basic_client.ts - - Agent creation
02_create_agent.ts - - Basic messaging
03_send_message.ts - - Streaming
04_send_message_stream.ts - - Next.js pattern
05_nextjs_singleton.ts - - Multi-user patterns
06_multi_user.ts - - Parallel sessions
07_conversations.ts - - Custom tools with secrets
08_custom_tool.ts - - Long-term storage
09_archival_memory.ts - - Multi-agent shared memory
10_shared_blocks.ts - - Custom memory tools
11_client_injection.ts - - Tool execution order
12_tool_rules.ts - - Execute tools locally (like Letta Code)
13_client_side_tools.ts
Troubleshooting
| Error | Cause | Fix |
|---|---|---|
| 401 Unauthorized | Invalid or missing API key | Check |
| 422 Validation Error | Missing required field | Add |
| Tool not found | Tool not attached to agent | |
| Secret not configured | Add to agent via |
| 524 Timeout | Long operation without pings | Add |
| Agent not responding | Model issue or empty response | Check for |
| Memory block not updating | Looking at wrong agent | Verify |
| Import error in tool | Top-level import | Move imports inside function body |
Key Gotchas
- Imports in tools must be inside the function - Tools run in a sandbox without access to top-level imports
- Use for secrets - Don't pass sensitive data as function arguments
os.getenv() - On Cloud, use injected - Don't instantiate
clientinside tools, use the pre-injected clientLetta() - Memory blocks are character-limited - Use archival memory for large data
- Streaming requires for long operations - Prevents timeout on Cloud
include_pings=True - SDK 1.0 uses not
.update()- Method was renamed.modify() - is always available - Use it in tools to reference the current agent
LETTA_AGENT_ID - Archival tools need - Not attached by default
include_base_tools=True - Use for shared blocks - Safest for concurrent writes (append-only)
memory_insert - Tool docstrings require Args section - Parameters need descriptions or schema generation fails
TypeScript SDK Notes
typescript
// Client initialization uses baseURL (not baseUrl)
const client = new Letta({ apiKey: "...", baseURL: "http://localhost:8283" });
// Block API: positional args changed
client.agents.blocks.attach(blockId, { agent_id }); // blockId is first
client.agents.blocks.retrieve(blockLabel, { agent_id }); // label is first
// Passages.create returns array
const passages = await client.agents.passages.create(agentId, { text: "..." });
const passage = passages[0];
// Content can be string | array - use type guard
const content = typeof msg.content === "string" ? msg.content : JSON.stringify(msg.content);
// Conversations API returns streams by default
const stream = await client.conversations.messages.create(convId, { messages: [...] });
for await (const chunk of stream) { ... }
// Tool rule types
{ type: "run_first", tool_name: "..." } // InitToolRule
{ type: "constrain_child_tools", tool_name: "...", children: [...] } // ChildToolRule
{ type: "exit_loop", tool_name: "..." } // TerminalToolRuleQuick Reference
python
# Client
client = Letta(api_key=os.getenv("LETTA_API_KEY"))
# Create agent
agent = client.agents.create(
model="anthropic/claude-sonnet-4-5-20250929",
embedding="openai/text-embedding-3-small",
memory_blocks=[{"label": "persona", "value": "..."}],
include_base_tools=True, # archival memory tools
enable_sleeptime=True, # background memory processing
)
# Send message
response = client.agents.messages.create(
agent_id=agent.id,
messages=[{"role": "user", "content": "Hello"}]
)
# Stream response
stream = client.agents.messages.stream(
agent_id=agent.id,
messages=[{"role": "user", "content": "Hello"}],
stream_tokens=True,
include_pings=True, # prevent timeout
)
# Create tool
tool = client.tools.create(source_code="def my_tool(x: str) -> str: ...")
client.agents.tools.attach(agent_id=agent.id, tool_id=tool.id)
# Memory blocks
client.agents.blocks.retrieve(agent_id=agent.id, block_label="persona")
client.agents.blocks.update(agent_id=agent.id, block_label="persona", value="...")
# Folders
folder = client.folders.create(name="docs")
client.folders.files.upload(file=f, folder_id=folder.id)
client.agents.folders.attach(agent_id=agent.id, folder_id=folder.id)
# Conversations (parallel sessions)
conv = client.conversations.create(agent_id=agent.id)
stream = client.conversations.messages.create(conv.id, messages=[...])
# Agent secrets (for tools)
client.agents.update(agent_id=agent.id, secrets={"API_KEY": "..."})Resources
Platform:
- Letta Cloud (ADE) - Agent Development Environment
- API Keys - Get your API key
Documentation:
- Letta Docs - Full documentation
- Agents Guide - Agent concepts
- Memory Blocks - Memory architecture
- Custom Tools - Tool creation
- Streaming - Real-time responses
- Multi-User - Scaling patterns
SDKs:
- Python SDK -
pip install letta-client - TypeScript SDK -
npm install @letta-ai/letta-client
Examples:
- Chatbot Example - Full app example