Skip to content

Installation

Basic Install

pip install agentgate-eval

Zero runtime dependencies. Works with Python 3.10+.

Optional Extras

# LLM-as-Judge support (requires OpenAI SDK)
pip install agentgate-eval[llm]

# LangGraph adapter
pip install agentgate-eval[langgraph]

# CLI tools
pip install agentgate-eval[cli]

# Everything
pip install agentgate-eval[all]

From Source

git clone https://github.com/qq1455519358-sys/agentgate.git
cd agentgate
pip install -e ".[dev]"
pytest tests/ -q

Verify

import agentgate
print(agentgate.__version__)  # 0.4.1
print(len(agentgate.__all__))  # 108 exports