Skip to main content
The Axiom Console displays results from evaluations. After you run axiom eval from the CLI, offline evaluation results appear in the Console and the CLI provides a link to view them. For example:
The evaluation interface helps you answer three core questions:
  1. How well does this configuration perform?
  2. How does it compare to previous versions?
  3. Which tradeoffs are acceptable?

Compare configurations

To understand the impact of changes, compare evaluation runs to see deltas in accuracy, latency, and cost.

Using the Console

Run your evaluation before and after making changes, then compare both runs in the Axiom Console:
The Console shows both runs where you can analyze differences side-by-side.

Using the baseline flag

For direct CLI comparison, specify a baseline evaluation ID:
The CLI output will show deltas for each metric.
The --baseline flag expects a trace ID. After running an evaluation, copy the trace ID from the CLI output or Console URL to use as a baseline for comparison.
Example: Switching from gpt-4o-mini to gpt-4o might show:
  • Accuracy: 85% → 95% (+10%)
  • Latency: 800 ms → 1.6 s (+100%)
  • Cost per run: 0.0020.002 → 0.020 (+900%)
This data helps you decide whether the quality improvement justifies the cost and latency increase for your use case.

Investigate failures

When test cases fail, click into them to see:
  • The exact input that triggered the failure
  • What your capability output vs what was expected
  • The full trace of LLM calls and tool executions
Look for patterns:
  • Do failures cluster around specific input types?
  • Are certain scorers failing consistently?
  • Is high token usage correlated with failures?
Use these insights to add targeted test cases or refine your capability.

Experiment with flags

Flags let you test multiple configurations systematically. Run several experiments:
Compare all four runs in the Console to find the configuration that best balances quality, cost, and latency for your requirements.

Track progress over time

For teams running evaluations regularly (nightly or in CI), the Console shows whether your capability is improving or regressing across iterations. Compare your latest run against your initial baseline to verify that accumulated changes are moving in the right direction.

What’s next?

  • To learn how to use flags for experimentation, see Flags and experiments.
  • To iterate on your capability based on evaluation results, see Iterate.