Agent File (.af)

Import and export agents in Letta

For a complete list of example agents, additional documentation, and to contribute to the Agent File standard, visit the Agent File repository on GitHub.

Agent File (.af) is an open standard file format for serializing stateful agents. It provides a portable way to share agents with persistent memory and behavior across different environments.

You can import and export agents to and from any Letta Server (including both self-hosted servers and Letta Cloud) using the .af file format.

Agent File logo

What is Agent File?

Agent Files package all components of a stateful agent:

  • System prompts
  • Editable memory (personality and user information)
  • Tool configurations (code and schemas)
  • LLM settings

By standardizing these elements in a single format, Agent File enables seamless transfer between compatible frameworks, while allowing for easy checkpointing and version control of agent state.

Why Use Agent File?

The AI ecosystem is experiencing rapid growth in agent development, with each framework implementing its own storage mechanisms. Agent File addresses the need for a standard that enables:

  • Portability: Move agents between systems or deploy them to new environments
  • Collaboration: Share your agents with other developers and the community
  • Preservation: Archive agent configurations to preserve your work
  • Versioning: Track changes to agents over time through a standardized format

What State Does .af Include?

A .af file contains all the state required to re-create the exact same agent:

ComponentDescription
Model configurationContext window limit, model name, embedding model name
Message historyComplete chat history with in_context field indicating if a message is in the current context window
System promptInitial instructions that define the agent’s behavior
Memory blocksIn-context memory segments for personality, user info, etc.
Tool rulesDefinitions of how tools should be sequenced or constrained
Environment variablesConfiguration values for tool execution
ToolsComplete tool definitions including source code and JSON schema

Using Agent File with Letta

Importing Agents

You can import .af files using the Agent Development Environment (ADE), REST APIs, or developer SDKs.

Using ADE

Upload downloaded .af files directly through the ADE interface to easily re-create your agent.

Importing Agent File Demo
Importing an Agent File through the ADE interface
1// Install SDK with `npm install @letta-ai/letta-client`
2import { LettaClient } from '@letta-ai/letta-client'
3import { readFileSync } from 'fs';
4import { Blob } from 'buffer';
5
6// Assuming a Letta Server is running at http://localhost:8283
7const client = new LettaClient({ baseUrl: "http://localhost:8283" });
8
9// Import your .af file from any location
10const file = new Blob([readFileSync('/path/to/agent/file.af')])
11const agentState = await client.agents.importAgentSerialized(file, {})
12
13console.log(`Imported agent: ${agentState.id}`);

Exporting Agents

You can export your own .af files to share by selecting “Export Agent” in the ADE.

Exporting Agent File Demo
Exporting an Agent File from the ADE interface
1// Install SDK with `npm install @letta-ai/letta-client`
2import { LettaClient } from '@letta-ai/letta-client'
3
4// Assuming a Letta Server is running at http://localhost:8283
5const client = new LettaClient({ baseUrl: "http://localhost:8283" });
6
7// Export your agent into a serialized schema object (which you can write to a file)
8const schema = await client.agents.exportAgentSerialized("<AGENT_ID>");

FAQ

Does .af work with frameworks other than Letta?

Theoretically, other frameworks could also load in .af files if they convert the state into their own representations. Some concepts, such as context window “blocks” which can be edited or shared between agents, are not implemented in other frameworks, so may need to be adapted per-framework.

How does .af handle secrets?

Agents have associated secrets for tool execution in Letta. When you export agents with secrets, the secrets are set to null for security reasons.

Contributing to Agent File

The Agent File format is a community-driven standard that welcomes contributions:

  • Share Example Agents: Contribute your own .af files to the community
  • Join the Discussion: Connect with other agent developers in our Discord server
  • Provide Feedback: Offer suggestions and feature requests to help refine the format

For more information on Agent File, including example agents and the complete schema specification, visit the Agent File repository.