AIAny
AI Agent2024
Icon for item

Letta

Gives LLM agents self-editing memory that persists across sessions, so they keep learning about a user instead of resetting each chat. Model-agnostic: bring your own LLM while it handles the memory and agent state, run via API or open source.

Introduction

Most agent frameworks treat the LLM as the product and memory as an afterthought — a vector store bolted on the side. Letta inverts this: the agent's memory is the system, and the LLM is a swappable component underneath. That single design choice is what lets the same agent keep learning about you across thousands of sessions instead of resetting to a stateless tool every time the context window fills up.

What Sets It Apart
  • Self-editing memory from the MemGPT paper: the agent decides what to promote into its persistent core memory and what to page out, so personalization compounds rather than being re-prompted each turn.
  • Model-agnostic by construction — memory and agent logic live outside the LLM, so you can switch providers or run local models without rewriting the agent.
  • State lives on a server, not in your prompt: agents are addressable entities you deploy and query via API, which is a different mental model from stuffing history into every request.
Who It's For

Great fit if you're building agents meant to persist — personal assistants, support bots, or anything where the agent should remember a user weeks later — and you want memory as infrastructure rather than hand-rolled retrieval. Look elsewhere if you need a quick stateless completion call, a turnkey chat UI, or a no-code tool; this is an agent runtime that assumes you're writing the application around it.

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).