Letta Evals
Description
Evaluation kit for testing stateful agents
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Letta Evals
Letta Evals is a framework for evaluating [Letta](https://github.com/letta-ai/letta) and Letta Code agents. It lets you define an evaluation suite with a dataset, target, extractors, graders, and a reward contract, then run that suite against one or more model configurations.
If you are building agentic systems, high-quality evals are one of the fastest ways to understand how model versions, prompts, tools, or agent configuration changes affect your product.
Requirements
- Python 3.11+
- A running Letta server, either:
- Self-hosted: follow the Letta installation guide, or
- Letta Cloud: create an account at app.letta.com and set:
Then useexport LETTA_API_KEY=your-api-key export LETTA_PROJECT_ID=your-project-idbase_url: https://api.letta.com/in your suite YAML, or pass--base-url https://api.letta.com/on the CLI.
- Provider API keys for the models you use, such as
OPENAI_API_KEY,ANTHROPIC_API_KEY, orGOOGLE_API_KEY.
Installation
For local development or custom eval authoring, clone this repository and install with dev dependencies:
uv sync --extra dev
To run existing evals without editing the repo:
pip install letta-evals
Quick start
- Create a dataset (
dataset.jsonl):
{"input": "What's the capital of France?", "ground_truth": "Paris"}
{"input": "Calculate 2+2", "ground_truth": "4"}
- Create a suite (
suite.yaml):
name: my-eval-suite
dataset: dataset.jsonl
target:
kind: letta_code
model_handles:
- openai/gpt-4.1-mini
base_url: http://localhost:8283
graders:
correctness:
kind: tool
function: contains
extractor: la
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing