Prime Intellect (Verifiers) telemetry
Stream Prime Intellect Verifiers eval rollouts into Latitude as traces. After setup, each rollout appears in your project’s Traces view with prompts, model calls, tool calls, token usage, timing, and rewards — optionally as Latitude custom scores.Prerequisites
- A Latitude account with a project
- A Verifiers v1 eval setup (
verifiers.v1,uv run eval, orprime eval) pip/uvin the same environment that runs your eval
Install
- In Latitude, copy your project slug from the project sidebar.
- Create or copy an API key from Settings → API Keys.
- Install the package into the env that runs Verifiers:
- Set credentials:
Traces go to Latitude Cloud ingest (
https://ingest.latitude.so) by default. Scores use the public API (https://api.latitude.so). For self-hosted or local Latitude, set LATITUDE_BASE_URL (ingest origin, no /v1/traces suffix) and LATITUDE_API_BASE_URL (API origin) to match that instance.Usage
From a Python eval script
on_complete callback to Env.run_slot:
After a CLI eval (post-hoc)
Run your eval as usual, then export the results directory:traces.jsonl, episodes.jsonl, or results.jsonl.
Verify
Open your Latitude project → Traces. New rollouts should appear within a few seconds after export. If you left score export enabled (default), rewards show up as custom scores on those traces. If nothing arrives, setLATITUDE_DEBUG=true and re-run the export.
Structural-only telemetry
Disable scores
Configuration
Telemetry stays off until both
LATITUDE_API_KEY and a project are set.
How it works
Verifiers v1 records each rollout as a typedTrace (messages, ModelCalls, tools, rewards, timing). This package maps that record to OTLP:
sourceId = verifiers.reward.<name>) against the same 32-hex trace id. Export is fail-open: a Latitude error never fails your eval.
Captured data and privacy
By default Latitude receives prompts, responses, tool I/O, model metadata, token usage, and reward values.- Set
LATITUDE_NO_CONTENT=truefor structural telemetry only. - Disable or skip export before working with sensitive material you do not want sent to Latitude.
Troubleshooting
No traces appear. ConfirmLATITUDE_API_KEY and LATITUDE_PROJECT are set in the same environment that runs the export, and that the results path contains a .jsonl file.
Scores missing. Check LATITUDE_EXPORT_SCORES is not false, and that LATITUDE_API_BASE_URL points at the same Latitude instance as your API key.
Traces show timing but no content. Structural-only mode is on — unset LATITUDE_NO_CONTENT.