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

# Metadata

> Documentation for Metadata

### CallEvent

Every intercepted call produces a `CallEvent`:

```python theme={null}
@dataclass
class CallEvent:
    ts: str             # ISO 8601 UTC timestamp
    model: str          # model name from response
    provider: str       # anthropic | openai | groq | unknown
    input_tokens: int
    output_tokens: int
    cost_usd: float     # estimated cost
    latency_ms: int
    user_id: str | None
    session_id: str | None
    tags: list[str] | None
    routed_tier: str | None   # set by Router if routing was used
    error: str | None         # set if the call raised an exception
```

Prompt content and response content are **never** included by default.

***
