Letta

Letta

Memory-enabled platform for stateful AI agents

Overview

Letta provides a memory management platform for building and deploying stateful AI agents. It offers a hosted, model-agnostic API service called Letta Cloud and an Agent Development Environment (ADE) with a REST API and SDKs to build, run, and test agents locally. The platform lets developers create AI agents that maintain context and learn from long-running conversations by managing memory and context over time, enabling continued learning from user interactions. Letta’s technology draws on UC Berkeley research and MemGPT for memory management, positioning it to help applications that require long-term reasoning and evolving agents. Letta differentiates itself through its focus on memory-enabled, stateful agents, a fully hosted API with scalable cloud deployment, and developer tools for end-to-end agent development. The company’s goal is to help developers and businesses build AI agents that can reason, remember, and improve across extended conversations at scale.

Significant Headcount Growth

About Letta

Simplify's Rating
Why Letta is rated
C+
Rated C on Competitive Edge
Rated B on Growth Potential
Rated C on Differentiation

Industries

Data & Analytics

Enterprise Software

AI & Machine Learning

Company Size

11-50

Company Stage

Seed

Total Funding

$10M

Headquarters

San Francisco, California

Founded

2024

People at Letta

People at Letta who can refer or advise you

Simplify Jobs

Simplify's Take

What believers are saying

  • Sleep-time compute reduces test-time tokens by 5x while improving accuracy 13–18%.
  • Letta Cloud v0.6.4 added Python 3.13 support and alpha TypeScript SDK.
  • Advanced memory management enables stateful AI agents with long-term reasoning capabilities.

What critics are saying

  • LangChain's DeepAgents v0.6 copies core memory features, risking 40–60% price war in 6–12 months.
  • Open-source MemGPT allows competitors to build proprietary versions without paying Letta.
  • Pro plan limits to 20 agents, causing enterprise churn to higher-scale platforms in 6–10 months.

What makes Letta unique

  • Letta pioneered sleep-time compute for AI agents to refine memory during idle time.
  • Its dual-agent architecture enables persistent infinite context in MemGPT 2.0.
  • Letta offers a tiered memory system with core, archival, and recall memory layers.

Help us improve and share your feedback! Did you find this helpful?

Funding

Total Funding

$10M

Above

Industry Average

Funded Over

1 Rounds

Seed funding is usually the first official round after pre-seed, when a startup has a prototype or concept. It’s typically used to develop the product, test the market, and start building the team. Investors here are often angel investors or early-stage venture capitalists.
Seed Funding Comparison
Above Average

Industry standards

$3.3M
$2M
Netflix
$2.3M
Instacart
$3M
Robinhood
$10M
Letta

Benefits

Flexible Work Hours

Growth & Insights and Company News

Headcount

6 month growth

-11%

1 year growth

6%

2 year growth

0%
Agent Engineering
Jun 27th, 2026
The harness stops being static: self-modification, trace-mined updates, and per-model profiles.

The harness stops being static: self-modification, trace-mined updates, and per-model profiles. Multiple converging releases suggest the agent harness is becoming a runtime-mutable artifact that agents, traces, and model-specific tuning all reshape - with concrete consequences for how teams version and govern infrastructure. By the Editors · AI-generated, human-reviewed June 27, 2026 For most of the last two years, the agent harness - the scaffold of tool definitions, context injection rules, compaction strategy, and loop control around a model - was treated as code you write once and tune by hand. The releases of late June 2026 make it clear that assumption is dissolving. The harness is becoming a learned, mutable artifact: edited by agents at runtime, derived from trace mining, and specialized per model. That shifts the practical question from designing a good harness to treating it as a deployable, observable, version-controlled surface. Three independent signals, one direction. Look at what shipped or was published in the last week of June 2026. Letta introduced Mods, a mechanism for agents in Letta Code to modify their own harness at runtime - adding tools, changing context injection, adjusting compaction. Work built on LangChain's DeepAgents proposed Self-Harness, where an agent mines its own traces for failure modes, proposes harness changes, and validates them via regression testing. LangChain's Deep Agents v0.6 introduced per-model harness profiles, acknowledging that the same scaffold tuned for Claude underperforms when pointed at Kimi or DeepSeek. And LangChain's own LangSmith Engine demonstration treats trace analysis as a sleep-time compute step that produces memory updates between runs. None of these are coordinated. They are independent teams arriving at the same shape: the harness is no longer the stable part of the system. The model used to be the variable and the harness the constant. That relationship is inverting. With open-weight models like GLM-5.2 and TMax-27B closing in on frontier performance, swapping models is becoming routine - and the harness is what now has to adapt around them. Why this is happening now. Three forces are pushing in the same direction. First, trace data is finally being treated as primary training signal rather than debug output - a shift Agent Engineering examined in The Trace Becomes the Primary Artifact. The argument that continual learning is fundamentally a data-mining problem over traces is showing up in tooling - LangSmith Engine, RubricMiddleware, Self-Harness loops - that operationalizes mining traces into structured proposals for memory, evals, and harness changes. Once you have a pipeline that can produce a candidate harness diff from a week of traces, there's no reason to leave that diff for a human to hand-write. Second, the harness is where model-specific behavior actually lives. Per-model profiles in Deep Agents v0.6 are an admission that a tool-calling loop tuned for one model's quirks doesn't transfer - the argument of Model-Specific Profiles and Runtime-Authored Workflows. As open-weight agentic models proliferate - GLM-5.2 with a 1M context, TMax-9B punching above its weight on Terminal Bench - the cost of carrying a single generic harness is rising. Specialization at the harness layer is cheaper than fine-tuning. Third, the harness is becoming the natural place to put verification, governance, and code execution. The interpreters added to Deep Agents, sitting between single tool calls and full sandboxes, are a harness-level decision. Gemini 3.5 Flash's native computer use ships with built-in confirmation prompts and prompt-injection task-stopping - again, harness behavior baked into the model surface. Claude Tag's per-channel memory and ambient triggers are harness features in user clothing. The harness has absorbed so much of what determines agent behavior that it would be strange if it remained the only frozen layer. What changes for practitioners. If the harness is mutable, the engineering problem shifts from "design a good harness" to "build a feedback loop that improves the harness safely." That's a substantially different discipline. The minimum viable version of this loop has four parts: structured traces with enough signal to diagnose failures, a mining step that proposes changes (new tools, revised context rules, updated compaction thresholds), a regression suite that catches when a proposal breaks something that previously worked, and a deployment mechanism that versions harness changes the same way you version code. LangChain's blog on loop engineering frames this as nested loops - tool-calling, verification, event-driven - but the deeper point is that there's now a fourth loop above all of them: the loop that edits the harness itself. If agents can modify their own harness at runtime, the regression suite is no longer optional infrastructure - it is the safety boundary. Self-modifying systems without regression tests are how production agents quietly drift away from the behaviors that got them shipped. The new failure modes. A mutable harness creates failure modes that static harnesses don't have. Asymmetric goal drift becomes more likely when the agent itself can rewrite the rules that constrain it. Eval autoimmunity gets worse when the proposed harness changes are validated against tests that the same agent shaped. And debugging becomes path-dependent: reproducing a bug now requires knowing not just the prompt and model version, but the harness diff that was active at that moment. This is why per-model profiles, delta-channel checkpointing, and structured trace projections - all in the same Deep Agents v0.6 release - matter together. They are the bookkeeping that makes harness mutation auditable. Treat any of them as optional and you lose the ability to reason about why your agent behaved a certain way last Tuesday. Where to start. Three concrete moves are worth making now, before the patterns calcify. Version your harness like code. Not just the prompts - the tool definitions, the compaction rules, the context injection logic, the model-specific profile. Tag each agent invocation with the harness version it ran under. This is cheap to add today and extremely expensive to backfill once you have a year of traces with no versioning. Build the trace-mining pipeline before you need it. Even a simple weekly job that clusters failures by tool, by subagent, or by context length will surface harness changes you wouldn't have prioritized. The teams shipping self-improving loops aren't doing magic - they're doing data engineering on traces that most teams are already collecting but not analyzing. Separate the harness-editing authority from the agent's normal action space. An agent that can both serve user requests and modify its own harness in the same loop is one prompt injection away from a bad outcome. Treat harness edits as a privileged action that requires offline review, regression testing, or at minimum a separate identity - the same way you'd treat a schema migration in a production database. The harness was the boring layer. It isn't anymore: model swaps, trace mining, governance, and self-improvement all converge there, which is why it deserves the same versioning, review, and regression discipline as any other production system.

Startup Ecosystem Canada
Aug 21st, 2025
Advancements in AI Memory with Letta's Sleeptime Compute

Bilt, in collaboration with the startup Letta, is pioneering advancements in AI memory through a process called 'sleeptime compute'.

Letta
Jul 24th, 2025
Introducing Letta Filesystem

Tl;dr: Letta Inc. has released Letta Filesystem, a new way to contextualize agents with documents.

Letta
May 29th, 2025
Letta Leaderboard: Benchmarking LLMs on Agentic Memory

Letta Inc. is excited to announce the Letta Leaderboard, a comprehensive benchmark suite that evaluates how effectively LLMs manage agentic memory.

Letta
Apr 2nd, 2025
Agent File

Today Letta Inc. is launching Agent File (.

Recently Posted Jobs

Sign up to get curated job recommendations

Letta is Hiring for 4 Jobs on Simplify!

Find jobs on Simplify and start your career today

Don't see your dream role? Check out thousands of other roles on Simplify. Browse all jobs →