Getting Started
Quickstart Guide
Select environments or domains to generate custom installation and run commands.
Beta Notice
The API is under active development. Please pin your version for production use.
Select Environments
|
Enterprise Software
Communication
Finance & Commerce
OS & Development
Specialized
Installation
pip install decodingtrust-agentDownload Dataset
dta download --dataset allRun Evaluation
dta run --all-envs --agent "your-agent" --model "gpt-5"Python API
from decodingtrust_agent import Benchmark, Agent
# Initialize with selected environments
benchmark = Benchmark(environments=["all"])
# Load your agent
agent = Agent.from_config("your-agent-config.yaml")
# Run evaluation
results = benchmark.evaluate(agent)
print(results.summary())