Skip to main content

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. No Latitude account yet? Your agent can create a temporary one and do this whole setup with the latitude-setup skill, no signup.
Using an agent? Install the Latitude skills and let it handle the setup below. latitude-setup instruments your app or agent harness, verifies traces arrive, creates a temporary account if you don’t have one yet (no signup), and ends by building your first Artifact.

Prerequisites

  • A Latitude account with a project, or none yet: your agent can create a temporary one with the latitude-setup skill, no signup, and fill in the values below
  • A Verifiers v1 eval setup (verifiers.v1, uv run eval, or prime eval)
  • pip / uv in the same environment that runs your eval

Install

  1. In Latitude, copy your project slug from the project sidebar (or let the latitude-setup skill create a temporary account and project for you).
  2. Create or copy an API key from Settings → API Keys.
  3. Install the package into the env that runs Verifiers:
  1. 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

Or attach an on_complete callback to Env.run_slot:

After a CLI eval (post-hoc)

Run your eval as usual, then export the results directory:
The CLI looks for 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, set LATITUDE_DEBUG=true and re-run the export.

See what was captured

Once a real run has landed, your agent builds your first Artifact: a single HTML page, in the Latitude look, with everything the telemetry captured from that session: model calls, tool calls, tokens, cost, timing, and the conversation as the model saw it. It is the fastest way to check the integration end to end and to see what Latitude will have to work with. The latitude-setup skill does this as its last step from its bundled first-artifact.html template, filling the page with the values the latitude CLI returns for the trace, and adds a Claim your workspace button when the account is temporary. If you set things up by hand, the same template and instructions live in the skills repo. Prompt, if you need to ask for it:

Structural-only telemetry

Structural-only traces still include timing, model, token usage, and span structure. Message and tool content are omitted.

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 typed Trace (messages, ModelCalls, tools, rewards, timing). This package maps that record to OTLP:
It POSTs traces to ingest and, when enabled, POSTs each reward as a custom score (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=true for structural telemetry only.
  • Disable or skip export before working with sensitive material you do not want sent to Latitude.

Troubleshooting

No traces appear. Confirm LATITUDE_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.