1# Eval
2
3This eval assumes the working directory is the root of the repository. Run it with:
4
5```sh
6cargo run -p eval
7```
8
9## Explorer Tool
10
11The explorer tool generates a self-contained HTML view from one or more thread
12JSON file. It provides a visual interface to explore the agent thread, including
13tool calls and results. See [./docs/explorer.md](./docs/explorer.md) for more details.
14
15### Usage
16
17```sh
18cargo run -p eval --bin explorer -- --input <path-to-json-files> --output <output-html-path>
19```
20
21Example:
22
23```sh
24cargo run -p eval --bin explorer -- --input ./runs/2025-04-23_15-53-30/fastmcp_bugifx/*/last.messages.json --output /tmp/explorer.html
25```