Skip to main content
PandaProbe lets you attach scores to traces programmatically. Scores can represent user feedback, automated quality metrics, or any other evaluation signal you want to persist next to a trace.
Scores are first-class objects on the trace record: you can filter, sort, and build dashboards on them alongside latency, tokens, and cost.

Basic usage

Parameters

Score data types (ScoreDataType)

A numeric value (for example, "0.95", "4.5"). Use for continuous metrics such as accuracy, latency, or satisfaction scores.
value is always a string at the API boundary so serialization stays consistent across languages and storage backends; parse according to data_type in your pipelines.

Getting the trace ID

From a context manager:
When using wrappers, traces are created automatically. Use sessions to group related traces and score them via the PandaProbe API or dashboard.

Multiple scores per trace