Installation¶
Basic Install¶
Zero runtime dependencies. Works with Python 3.10+.
Optional Extras¶
# LLM-as-Judge support (requires OpenAI SDK)
pip install agentgate[llm]
# LangGraph adapter
pip install agentgate[langgraph]
# CLI tools
pip install agentgate[cli]
# Everything
pip install agentgate[all]
From Source¶
git clone https://github.com/qq1455519358-sys/agentgate.git
cd agentgate
pip install -e ".[dev]"
pytest tests/ -q