Getting Started

Quickstart Guide

Select environments or domains to generate custom installation and run commands.

Select Environments

|

Enterprise Software

Communication

Finance & Commerce

OS & Development

Specialized

Installation
pip install decodingtrust-agent
Download Dataset
dta download --dataset all
Run 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())