Agent Analyzer← Back to home

Agent Analyzer

Analyze an AI Agent Trace

Upload or paste a supported AI agent trace to analyze cost, token usage, latency, tool calls, and execution issues. Analysis runs entirely in your browser.

Expected format

{
  "id": "run_001",
  "name": "my-agent",
  "startTime": "2024-01-01T00:00:00.000Z",
  "endTime":   "2024-01-01T00:00:05.000Z",
  "steps": [
    {
      "id": "step_01",
      "type": "llm",           // llm | tool | retrieval | other
      "name": "classify_request",
      "model": "gpt-4o-mini",  // optional
      "inputTokens": 412,      // optional
      "outputTokens": 68,      // optional
      "cost": 0.000072,        // optional, in USD
      "startTime": "...",
      "endTime": "...",
      "status": "success"      // success | error
    }
  ]
}