query_calls
Retrieve and filter LLM call records by provider, model, time range, and latency for direct observability data access.
Instructions
Retrieve recent LLM call records captured by Argosvix. Filterable by provider / model / time range / tag. Defaults to the last 24 hours, 100 records.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of records to return (1-500, default 100) | |
| model | No | Model name to filter by (substring match). Omit for all models | |
| beforeId | No | Keyset pagination cursor (id of the last row on the previous page). Must be used together with beforeTimestamp | |
| provider | No | Provider to filter by (openai / anthropic / gemini / mistral). Omit for all providers | |
| latencyMax | No | Upper bound on response latency (ms, >= 0). Combine with latencyMin for a range | |
| latencyMin | No | Lower bound on response latency (ms, >= 0). For outlier drill-down (e.g. "only calls over 2 seconds") | |
| rangePreset | No | Time range preset. Default 24h | 24h |
| beforeTimestamp | No | Keyset pagination cursor (timestamp of the last row on the previous page, ISO-8601). Must be used together with beforeId. Descending timestamp order only |