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

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.