AgentEvals: Robust Evaluation Tools for LLM Agent Trajectories
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
AgentEvals is a powerful open-source package from LangChain designed to simplify the evaluation of agentic applications. It provides a collection of ready-made evaluators and utilities, with a particular focus on analyzing agent trajectories, the intermediate steps an agent takes to solve problems. This helps developers understand and improve the reliability and performance of their LLM agents.
Repository Information
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Agentic applications grant Large Language Models (LLMs) the freedom to control their own flow to solve complex problems. While this approach is incredibly powerful, the inherent black-box nature of LLMs can make it challenging to understand how changes impact an agent's behavior downstream. This makes robust evaluation critically important.
AgentEvals, developed by LangChain, offers a comprehensive suite of evaluators and utilities specifically designed for assessing the performance of your agents. Its primary focus is on agent trajectory, examining the intermediate steps an agent takes during its execution. This package serves as an excellent conceptual starting point for your agent's evaluation strategy. For more general evaluation tools, consider checking out its companion package, openevals.
Installation
Getting started with AgentEvals is straightforward. You can install it using pip for Python or npm for TypeScript:
Python
pip install agentevals
TypeScript
npm install agentevals @langchain/core
For LLM-as-judge evaluators, you will also need an LLM client. By default, agentevals uses LangChain chat model integrations and comes with langchain_openai pre-installed. Alternatively, you can install the OpenAI client directly:
Python
pip install openai
TypeScript
npm install openai
It is also beneficial to be familiar with evaluation concepts and LangSmith's pytest integration for running evaluations, which is documented here.
Examples
AgentEvals provides various evaluators, including trajectory match evaluators and LLM-as-judge evaluators. Here is a quick example demonstrating how to use an LLM-as-judge evaluator to assess the accuracy of an agent's trajectory.
First, set your OpenAI API key as an environment variable:
export OPENAI_API_KEY="your_openai_api_key"
Then, you can run your first trajectory evaluator. Agent trajectories are represented as a list of OpenAI-style messages:
from agentevals.trajectory.llm import create_trajectory_llm_as_judge, TRAJECTORY_ACCURACY_PROMPT
import json
trajectory_evaluator = create_trajectory_llm_as_judge(
prompt=TRAJECTORY_ACCURACY_PROMPT,
model="openai:o3-mini",
)
# This is a fake trajectory, in reality you would run your agent to get a real trajectory
outputs = [
{"role": "user", "content": "What is the weather in SF?"},
{
"role": "assistant",
"content": "",
"tool_calls": [
{
"function": {
"name": "get_weather",
"arguments": json.dumps({"city": "SF"}),
}
}
],
},
{"role": "tool", "content": "It's 80 degrees and sunny in SF."},
{"role": "assistant", "content": "The weather in SF is 80 degrees and sunny."},
]
eval_result = trajectory_evaluator(
outputs=outputs,
)
print(eval_result)
This will output a result similar to:
{
'key': 'trajectory_accuracy',
'reasoning': 'The trajectory accurately follows the user's request for weather information in SF. Initially, the assistant recognizes the goal (providing weather details), then it efficiently makes a tool call to get the weather, and finally it communicates the result clearly. All steps demonstrate logical progression and efficiency. Thus, the score should be: true.',
'score': true
}
AgentEvals also offers various trajectory_match_mode options (strict, unordered, subset, superset) and tool_args_match_modes for fine-grained control over how trajectories are compared against references. Additionally, it includes Graph Trajectory evaluators, designed for frameworks like LangGraph, which allow evaluation based on nodes visited rather than just messages.
Why Use AgentEvals
Evaluating LLM agents is crucial for developing reliable and high-performing AI applications. AgentEvals provides a structured approach to this challenge:
- Understand Agent Behavior: By focusing on trajectories, you gain insight into the decision-making process and intermediate steps of your agents.
- Ensure Reliability: Implement automated checks to verify that agents consistently perform as expected, reducing unexpected behaviors.
- Facilitate Debugging: Pinpoint exactly where an agent's trajectory deviates from the desired path, making debugging more efficient.
- Improve Performance: Use evaluation results to iterate on agent design, leading to more efficient and accurate agentic applications.
- LangSmith Integration: Seamlessly integrate with LangSmith for experiment tracking, detailed tracing, and comprehensive evaluation reporting over time.
Links
Explore the AgentEvals repository on GitHub for more details, advanced usage, and contributions:
Related repositories
Similar repositories that may be relevant next.

Agent Sandbox: Secure Local Development for AI Coding Agents
August 17, 2026
Agent Sandbox provides a robust and secure local development environment specifically designed for collaborating with AI coding agents. It ensures minimal filesystem access, configurable network egress policies, and secure secret injection, protecting your local machine from potentially risky agent operations. This project supports various AI agents and integrates seamlessly with both CLI and popular IDE devcontainer setups.

AMD Skills: Empowering AI Agents with AMD's Optimized Software Stack
August 16, 2026
AMD Skills is the official catalog of AI agent skills from AMD, designed to empower AI agents with optimized software for AMD hardware. This repository provides knowledge, scripts, and conventions for working with AMD's stack, enabling seamless integration with major coding agents like Cursor, Claude Code, OpenAI Codex, and Gemini CLI.

agent-tackle-box: A Terminal Debugger for LangGraph & LangChain Agents
August 15, 2026
agent-tackle-box is a comprehensive toolkit for developing AI agents, featuring the powerful `agent-debugger`. This terminal debugger provides deep insights into LangGraph and LangChain agents. It allows developers to inspect state, monitor tool calls, and step through Python code, all within a unified Textual UI.

ADR: Uber's Enterprise Security System for AI Agents
August 14, 2026
ADR (Agentic AI Detection and Response) is an enterprise security system developed by Uber to secure AI agents. It offers critical capabilities like observability, security benchmarking, and threat detection, ensuring the safe operation of both employee and customer-facing AI applications. This open-source project is deployed in production at Uber and was accepted to MLSys 2026.
Source repository
Open the original repository on GitHub.
13 counted GitHub visits