> ## Documentation Index
> Fetch the complete documentation index at: https://phidatainc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Accuracy Eval Metrics

> Accumulate evaluator token usage into an agent's run_output via the run_metrics parameter of evaluate_answer, surfacing it under the eval_model key of metrics.details.

Demonstrates that eval model metrics can be accumulated into the original agent's run\_output using the run\_metrics parameter on evaluate\_answer.

```python accuracy_eval_metrics.py theme={null}
"""
Accuracy Eval Metrics
=====================

Demonstrates that eval model metrics can be accumulated into the original
agent's run_output using the run_metrics parameter on evaluate_answer.

The evaluator agent's token usage appears under "eval_model" in
run_output.metrics.details alongside the agent's own "model" entries.
"""

from agno.agent import Agent
from agno.eval.accuracy import AccuracyEval
from agno.models.openai import OpenAIChat
from rich.pretty import pprint

# ---------------------------------------------------------------------------
# Setup
# ---------------------------------------------------------------------------
agent = Agent(
    model=OpenAIChat(id="gpt-4o-mini"),
    instructions="Answer factual questions concisely.",
)

evaluation = AccuracyEval(
    name="Capital Cities",
    model=OpenAIChat(id="gpt-4o-mini"),
    agent=agent,
    input="What is the capital of Japan?",
    expected_output="Tokyo",
    num_iterations=1,
)

# ---------------------------------------------------------------------------
# Run
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    # First, run the agent to get a response
    run_output = agent.run("What is the capital of Japan?")
    agent_output = str(run_output.content)

    # Run the evaluator, passing run_output.metrics so eval metrics accumulate into it
    evaluator_agent = evaluation.get_evaluator_agent()
    eval_input = evaluation.get_eval_input()
    eval_expected = evaluation.get_eval_expected_output()

    evaluation_input = (
        f"<agent_input>\n{eval_input}\n</agent_input>\n\n"
        f"<expected_output>\n{eval_expected}\n</expected_output>\n\n"
        f"<agent_output>\n{agent_output}\n</agent_output>"
    )

    result = evaluation.evaluate_answer(
        input=eval_input,
        evaluator_agent=evaluator_agent,
        evaluation_input=evaluation_input,
        evaluator_expected_output=eval_expected,
        agent_output=agent_output,
        run_metrics=run_output.metrics,
    )

    if result:
        print(f"Score: {result.score}/10")
        print(f"Reason: {result.reason[:200]}")

    # The run_output now has both agent + eval metrics
    if run_output.metrics:
        print("\nTotal tokens (agent + eval):", run_output.metrics.total_tokens)

        if run_output.metrics.details:
            if "model" in run_output.metrics.details:
                agent_tokens = sum(
                    metric.total_tokens
                    for metric in run_output.metrics.details["model"]
                )
                print("Agent model tokens:", agent_tokens)

            if "eval_model" in run_output.metrics.details:
                eval_tokens = sum(
                    metric.total_tokens
                    for metric in run_output.metrics.details["eval_model"]
                )
                print("Eval model tokens:", eval_tokens)

            print("\nFull metrics breakdown:")
            pprint(run_output.metrics.to_dict())
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno openai
    ```
  </Step>

  <Step title="Export your OpenAI API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `accuracy_eval_metrics.py`, then run:

    ```bash theme={null}
    python accuracy_eval_metrics.py
    ```
  </Step>
</Steps>

Full source: [cookbook/09\_evals/accuracy/accuracy\_eval\_metrics.py](https://github.com/agno-agi/agno/blob/main/cookbook/09_evals/accuracy/accuracy_eval_metrics.py)
