From 404060123b84e54c8024b701200e16d9f18090b8 Mon Sep 17 00:00:00 2001 From: Dat Daryl Ngo <97070834+arizedatngo@users.noreply.github.com> Date: Mon, 24 Aug 2026 22:17:56 +0900 Subject: [PATCH] docs: Clarify Arize tracing options Signed-off-by: Dat Daryl Ngo <97070834+arizedatngo@users.noreply.github.com> --- docs/pyagentspec/source/agentspec/tracing.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/pyagentspec/source/agentspec/tracing.rst b/docs/pyagentspec/source/agentspec/tracing.rst index 23a8dfcc..8b825aee 100644 --- a/docs/pyagentspec/source/agentspec/tracing.rst +++ b/docs/pyagentspec/source/agentspec/tracing.rst @@ -1166,13 +1166,22 @@ Consuming traces (consumer example) Interoperability examples ------------------------- +Agent Spec tracing can feed OpenInference-compatible Arize workflows. Use +`Arize Phoenix `_ for open-source local or +self-hosted tracing, and use +`Arize AX `_ +for managed production observability and evaluation. The same traces can +support workflows such as +`agent evaluation `_ +and `LLM evaluation `_. + Tracing with LangGraph .. code-block:: python from pyagentspec.adapters.langgraph import AgentSpecLoader from openinference_spanprocessor import ArizePhoenixSpanProcessor - # Assuming this package implements a SpanProcessor that takes the Agent Spec Traces and sends them to a Phoenix Arize server + # Assuming this package implements a SpanProcessor that takes Agent Spec traces and sends them to Arize Phoenix agent_json = read_json_file("my/agentspec/agent.json") processor = ArizePhoenixSpanProcessor(mask_sensitive_information=False, project_name="agentspec-tracing-test")