Skip to main content
arize-phoenix-evals is Arize’s open-source, backend-agnostic evaluation library — the same library the LLM-as-a-judge provider guides wire a judge model into. It ships composable primitives (LLM, create_classifier, evaluate_dataframe) and prebuilt metric evaluators (hallucination, correctness, relevance, and more), and runs entirely in-process: it needs no separate server, and its results feed Arize AX through the arize SDK. This guide shows both ways to wire phoenix-evals into Arize AX: Flow 1 grades existing Arize AX traces with a classifier and writes the scores back via client.spans.update_evaluations(...); Flow 2 uploads a small dataset, runs an Arize AX experiment with the same classifier wrapped as an evaluator, and surfaces the scores in Datasets+Experiments. For the concepts behind the offline pattern, see Offline evaluation; for running these evals on a schedule inside the platform, see Run evals on traces. Both flows share the same setup. Run the code blocks below in order inside a single Python session — each block builds on imports and variables from earlier ones.

Prerequisites

  • Python 3.11+
  • An ARIZE_SPACE_ID and ARIZE_API_KEY from your Arize AX space settings
  • An OPENAI_API_KEY from OpenAI Platform (used as both the model under trace and the phoenix-evals judge LLM)

Launch Arize AX

If you don’t already have an Arize AX account, sign up at arize.com and grab your ARIZE_SPACE_ID and ARIZE_API_KEY from Settings → Space Settings.

Install

Configure credentials

Define evaluators

The shared setup: a create_classifier correctness evaluator backed by a GPT-4.1 judge, the canonical 2-row dataset both flows score, and an Arize SDK client. create_classifier relies on the judge’s tool-calling / structured-output support, so use a non-reasoning model such as GPT-4.1. The {input}, {output}, and {reference} placeholders in the template are filled from dataframe columns of the same name.
create_classifier builds a custom categorical evaluator. For common metrics, phoenix.evals.metrics ships prebuilt evaluators — HallucinationEvaluator, CorrectnessEvaluator, DocumentRelevanceEvaluator, RefusalEvaluator, and others — that you can pass to evaluate_dataframe in place of the classifier above.

Flow 1 — Evaluate existing traces

Source the spans

Instrument OpenAI with OpenInference, make two calls (each forced to echo a known answer so the trace contains predictable text), then pull the resulting spans back from Arize AX.

Run the evaluators

Map the span attributes to the template variables, then run the classifier over the whole dataframe in one pass. evaluate_dataframe returns the input dataframe plus a correctness_score column (a dict holding the label, score, and explanation) and a correctness_execution_details column. The reference value isn’t on the span, so it’s sourced from ROWS by position.
For larger batches, async_evaluate_dataframe(dataframe=..., evaluators=[...]) is the async equivalent and runs the judge calls concurrently.

Log evaluations to Arize AX

to_annotation_dataframe flattens the nested correctness_score dict into score, label, and explanation columns while preserving context.span_id (the join key export_to_df already provides). Rename those to the reserved eval.<name>.{score,label,explanation} columns Arize AX expects, then upload. For trace or session evals use the trace_eval.<name> / session_eval.<name> prefixes instead.

Expected output

Verify in Arize AX

Open the project named phoenix-evals-example-<timestamp> (the value printed above) in your Arize AX space. Each ChatCompletion span now carries a correctness annotation column showing the score and label written by update_evaluations(...).

Flow 2 — Run an experiment

Create a dataset

The dataset is the same two rows. The space= / examples= kwarg names match the v8 SDK exactly (note: not space_id= and not dataframe=).

Define the task

The task function receives the dataset row and returns whatever the experiment should grade. The parameter name must be one of input, output, metadata, or dataset_row — a single-arg task with an unrecognized name is bound to dataset_row by default. A real workflow would call an LLM here; this passthrough keeps the example deterministic.

Wrap the evaluators

Experiment evaluators run inside an asyncio loop, so use async def and the classifier’s async_evaluate(...) — it returns a list of Score objects, one per evaluator. Convert the first Score to an EvaluationResult with score and label and explanation populated: leaving any of those reserved fields as None triggers unsupported cast from null to <type>: reserved column cannot be coerced to canonical type at upload time.
EvaluationResult’s constructor order is (score, label, explanation, metadata)not (label, score, ...) as the alphabetical reading might suggest. Always use keyword arguments; positional calls silently swap label and score.

Run the experiment

Expected output

Verify in Arize AX

Open the Datasets + Experiments tab in Arize AX. The dataset phoenix-evals-example-ds-<timestamp> and the experiment phoenix-evals-example-<timestamp> (names printed above) appear with one run per dataset row, each carrying the correctness score and label columns.

Troubleshooting

  • create_classifier fails or returns empty labels. The judge model must support tool calling / structured output. Reasoning models (GPT-5-family or o-series ids) can also reject standard sampling params — use a non-reasoning judge such as gpt-4.1.
  • column "eval.<name>.label": unsupported cast from null to string: reserved column cannot be coerced to canonical type. In Flow 2 your evaluator returned a bare number or string instead of a fully-populated EvaluationResult(score=..., label=..., explanation=...). Arize AX’s Flight server rejects null values in reserved eval columns — populate all three fields.
  • Cannot call sync ... from an async context. Your Flow 2 evaluator is calling the classifier’s sync evaluate(...) instead of async_evaluate(...). Experiment evaluators run inside asyncio; use the async API. Flow 1 uses evaluate_dataframe(...) because it runs outside any loop.
  • Spans never appear after 60s. Span flush + ingest typically takes 5–15s. If the loop times out, check that ARIZE_SPACE_ID + ARIZE_API_KEY are right and that you’re connecting to the correct region’s OTLP endpoint (otlp.arize.com for US, otlp.eu.arize.com for EU). Evals can only be applied to spans up to 14 days old; for older spans contact support@arize.com.
  • task failed for example id .... Your task function’s parameter name isn’t one of the recognized names (input, output, metadata, dataset_row). Rename it to dataset_row if you want the whole row, or pick the field you actually need.
  • Experiment runs duplicate or the dataset already exists. Both names embed TIMESTAMP = int(time.time()) so a single re-run produces unique names. If you re-execute the same combined.py quickly, regenerate TIMESTAMP first.

Resources

Phoenix Evals reference

arize-phoenix-evals on GitHub

Offline evaluation concepts

Logging evaluations to Arize AX