LLaDAR
Get started

Run one complete evaluation

Use the included support demo Agent to see the full workflow before evaluating your own project.

Before you begin

The demo Agent itself needs only Python. Dataset generation, evaluation, and reporting use your configured provider.

1. Install LLaDAR and obtain the demo

git clone https://github.com/stoday/LLaDAR.git
cd LLaDAR
python -m pip install -e .

2. Create questions from the support policy

lladar create test-dataset --knowledge examples/support-demo-agent/knowledge.md --output demo-dataset.jsonl

This creates questions and expected answers based on the policy.

3. Run the demo Agent

lladar run-agent demo-dataset.jsonl --project examples/support-demo-agent --no-interactive --output demo-responses.jsonl

LLaDAR finds the demo Agent's public entry point, checks that it can use it, and records the responses.

4. Evaluate answers and create a report

lladar eval demo-responses.jsonl --output demo-evaluation.json
lladar report demo-evaluation.json --output demo-report.md

What success looks like

FileWhat it shows
demo-dataset.jsonlThe questions and expected answers.
demo-responses.jsonlThe Agent's answer for each question.
demo-responses.jsonl.run.jsonHow LLaDAR reached the Agent and whether the replay worked.
demo-evaluation.json and demo-report.mdPer-question judgments and a readable summary.
Important: a successful replay proves that the Agent entry point was exercised. Use the saved evaluation and report to assess answer quality.