August 2026 Summaries
18 posts from Arize
Filter
Month:
Year:
Post Summaries
Back to Blog
LLM cost optimization should focus on cost per validated outcome rather than token price alone, since cheaper models can require more context, retries, tool calls, or human rework that ultimately raise total spending. The recommended workflow begins by tracing complete agent or application behavior, including model calls, token use, tool responses, routing, retries, latency, and evaluation results, then attaching model-specific pricing to identify the spans responsible for high costs. Teams should monitor cost alongside quality metrics to distinguish wasteful behavior from valuable but expensive work, investigating recurring issues such as context bloat, oversized tool outputs, redundant calls, inefficient routing, and excessive evaluation spending. Suggested improvements include difficulty-based model routing, limiting unnecessary context and agent loops, caching stable prompts, reducing tool-response size, and using appropriately sized evaluators. Any proposed change should be tested against a fixed dataset containing common, expensive, difficult, and failure-prone requests, with cost and quality measured under the same criteria before deployment. Arize AX is presented as a platform for connecting traces, pricing, monitoring, managed-agent investigations, datasets, and experiments so teams can identify costly patterns and validate savings without degrading application performance.
Aug 31, 2026
2,187 words in the original blog post.
Arize Phoenix has added a built-in Model Context Protocol server with read-only SQL tools that let coding agents query telemetry traces directly rather than retrieve and manually aggregate paginated span data. The describeSqlSchema and executeSql tools run through a restricted code-mode sandbox, keeping intermediate results out of model context and returning only final outputs, while SQL is parsed, rebuilt, limited to approved telemetry tables, checked by database controls, and bounded by runtime and result-size limits. In an eight-question benchmark involving counts, durations, trends, joins, and breakdowns, SQL plus code mode averaged about $0.23 per question versus $3.97 for retrieval-only tools, a roughly 17-fold cost reduction, with one error-count query falling from 89 turns, 14 minutes, and $10.35 to 7 turns, 33 seconds, and $0.23. Phoenix argues that database-side aggregation is particularly useful for verbose LLM trace data, though retrieval may remain cheaper for simple lookups, and the feature is available in Phoenix versions 20.2.0 and later through OAuth-connected MCP clients such as Claude Code, Cursor, and other supported agents.
Aug 27, 2026
1,866 words in the original blog post.
Arize Signal, a managed capability within Arize AX, analyzes production AI-agent traces to identify recurring behavioral problems that conventional monitoring can miss when runs appear technically healthy. Applied to the Alyx engineering agent over 30 days, it surfaced 34 issues, including two retry loops: one caused duplicate task-state updates to return recoverable errors, prompting repeated `todo_update` and `finish()` calls, and another caused an empty optional dataset ID to be treated as invalid, leading to 43 repeated `get_datasets` calls during a 227-second run with an OK root span. Both failures required small code changes—treating duplicate state updates as successful no-ops and normalizing empty optional fields to `None`—along with regression tests. Signal groups related traces into ranked investigations with evidence, estimated impact, and suggested remediation, and can integrate with GitHub to create pull requests or issues, helping teams convert production behavior into a continuous cycle of detection, diagnosis, fixes, and validation.
Aug 27, 2026
1,474 words in the original blog post.
Stuart Sy argues that many production failures in AI agents stem less from model intelligence than from inadequate context, unavailable or unreliable tools, permission issues, and poorly designed runtime harnesses. Rare but recurring failures, such as conversations that silently stop once every few dozen runs, can evade aggregate quality metrics yet remain significant in real deployments, making tracing and observability essential. He recommends holding models constant while systematically improving prompts, retrieved information, tool schemas, permissions, and evaluation sets based on real examples and reproducible failures. Sy describes recursive self-improvement as an engineered feedback loop that converts production signals, including ratings, tickets, traces, and corrections, into failure taxonomies and new evaluation cases rather than autonomous model retraining. Because final-answer metrics can conceal costly tool errors, retries, latency, and flawed reasoning paths, teams should instrument full agent trajectories and evaluate both models and their surrounding harnesses. This view positions AI engineering as an extension of traditional software engineering that requires expertise in context design, tools, agent runtimes, evaluation, and production reliability to make generative AI systems predictable and effective.
Aug 25, 2026
1,633 words in the original blog post.
Skills for coding agents can be evaluated like other agents because they combine reusable prompt instructions with an agent harness, making their behavior traceable and measurable despite LLM variability. Using the arize-instrumentation skill as an example, the approach relies on a golden dataset of real applications, isolated container sandboxes that prevent agents from finding existing solutions, experiment runs that capture agent traces, token use, and latency, and evaluators that assess both generated code and the resulting telemetry. Teams establish a baseline, modify the skill, rerun the same experiment, and inspect failing traces to identify instructions that caused poor decisions. In one tested pull request, revisions that reduced duplicated guidance and improved manual and session tracing instructions increased trace correctness from 74% to 83%, raised an overall tracing grade from 13% to 50%, improved correct session use from 83% to 100%, and reduced token consumption by 9% and latency by 22%.
Aug 24, 2026
1,807 words in the original blog post.
A security researcher found that SpaceXAI’s Grok Build CLI initially transmitted entire tracked Git repositories, including commit histories and sensitive files, to a cloud storage bucket even when its “Improve the model” option was disabled; a subsequent server-side change halted the uploads, while the new /privacy command was found to affect retention rather than what data is transmitted. The investigation highlighted that most cloud-based AI coding agents must send task-relevant code to remote models, but differ in the scope of data sent, whether it may be retained or used for training, and the privacy controls available. Documentation reviewed for Claude Code, Codex, Cursor, GitHub Copilot, and Grok Build indicates that individual-plan users may need to opt out of training or enable privacy settings, while business, enterprise, API, and zero-data-retention arrangements generally provide stronger contractual protections. Zero data retention limits post-receipt storage rather than transmission and may exclude abuse-monitoring records, with retention policies varying by provider and plan. The episode increased attention on auditing coding-agent network behavior and on users reviewing privacy settings, while underscoring the trust required when proprietary code is processed by third-party AI services.
Aug 20, 2026
1,297 words in the original blog post.
Agent-as-a-Judge is an emerging approach to evaluating AI agents in which a separate agent examines execution traces, tool calls, intermediate decisions, and final outputs to assess behavior against defined criteria. Proponents argue that conventional single-pass LLM judges are insufficient for agents because important failures, such as loops, faulty tool use, lost context, or incomplete task completion, may be hidden behind plausible final responses. Research cited from a 2024 paper accepted at ICML 2025 found that an agent judge aligned with expert consensus on software-development tasks more closely than a standard LLM judge and at substantially lower cost and time, though it also showed risks such as error propagation from memory. Subsequent work has expanded agentic evaluation through tool-using, domain-specific, adversarial, and self-evolving judge systems, while commercial products have begun applying the method to production traces and recurring failure detection. The approach is presented as an additional layer in a broader evaluation strategy alongside deterministic checks, LLM judges, and human review, since agent judges remain nondeterministic, may carry trajectory-specific biases, and require validation through human spot checks.
Aug 19, 2026
1,539 words in the original blog post.
Uber’s agent platform team argues that effective AI-agent evaluation depends less on adding tools than on embedding tracing, ownership, and feedback loops into everyday development. A production voice-agent incident, in which background speech about pizza caused a ride to be rerouted, revealed how offline tests can miss real-world failures; a spike in conversation length helped uncover the issue through production metrics. Uber therefore makes detailed tracing available from deployment, uses production behavior and agent context to generate evaluators and alerts, and continuously promotes reviewed failures into evolving offline datasets. The company also broadens evaluation beyond engineering by enabling product, design, and operations specialists to assess behavior based on their domain knowledge. Rather than treating evaluation as a launch threshold, Uber measures its value by whether it changes release decisions, product designs, datasets, or system architecture. Its longer-term vision is an eval copilot that uses traces, documentation, and prior results to identify recurring failures, recommend tests and agent changes, and help teams validate improvements while retaining human judgment over final decisions.
Aug 14, 2026
2,645 words in the original blog post.
CVS Health leaders Matt Turner and Lagan Khare argue that moving AI agents from promising pilots to reliable production systems requires an AI-native development lifecycle centered on clear specifications, shared context, evaluation harnesses, observability, governance, and business-focused cost measurement rather than model capability alone. Their approach uses structured requirements and dependency maps to guide agent-generated work, golden datasets and regression suites to define acceptable behavior, continuous production monitoring to detect drift, and traceable guardrails, scoped permissions, rollback paths, and purposeful human review to manage risk, particularly in regulated settings. They recommend measuring economics through cost per successful outcome linked to operational KPIs, mapping complete workflows to prevent automation from shifting bottlenecks downstream, and prioritizing durable assets such as high-quality data, workflow design, evaluations, and trust controls over infrastructure that stronger models may eventually replace. Production readiness ultimately depends on having measurable business outcomes, evidence-based release thresholds, observable actions and costs, and explicit conditions for reducing or stopping agent autonomy.
Aug 13, 2026
3,778 words in the original blog post.
CrewAI has launched Crew Studio, an automated agent-building platform designed to let business-domain experts and engineering teams create, own, deploy, and modify agentic workflows through a combination of visual and code-based tools. Its native integration with Arize AX sends OpenTelemetry-compatible traces from Studio to Arize without custom instrumentation, providing span-level visibility into agent behavior, latency, token usage, costs, and workflow graphs from initial runs onward. Arize AX adds live evaluations, human labeling queues, ground-truth datasets, and experiments that enable teams to identify production issues, test fixes, and redeploy improvements through a trace-evaluate-label-improve cycle. The integration is configured through CrewAI’s OpenTelemetry collector using an Arize endpoint, Space ID, and API key, and its reliance on open standards is intended to preserve flexibility across models, frameworks, and observability systems.
Aug 13, 2026
877 words in the original blog post.
Arize announced a definitive agreement to be acquired by Dynatrace, a move intended to combine Arize’s AI observability, evaluation, and agent-focused capabilities with Dynatrace’s software tracing and logging infrastructure. Founded more than six years earlier on the premise that AI systems would require specialized tools to diagnose failures and improve performance, Arize positions the acquisition as a response to the growing convergence of AI agents and conventional software systems. The companies argue that detailed logs, traces, and agent-trajectory data will be essential for autonomous agents to monitor, debug, secure, and continually improve increasingly complex systems. Arize highlights its agent-first platform, including Arize Signal and Managed Agents, its open-source Phoenix and OpenInference communities, and its collection of agent trace data, while crediting employees, cofounder Aparna, customers, investors, advisors, and early supporters. The announcement frames agent safety, security, and decision quality as central industry challenges as organizations potentially deploy millions of agents, with the combined company aiming to advance Arize’s mission of making AI work reliably and securely for people.
Aug 13, 2026
973 words in the original blog post.
As AI agents gain longer runtimes, more tools, and greater authority, their reliability depends not only on model capability but also on the surrounding harness that manages orchestration, permissions, state, retries, and recovery. Guardrails and evaluations serve distinct roles: guardrails are code-level constraints that prevent prohibited or risky actions, while evals assess whether an agent’s outputs and trajectories were correct, useful, grounded, and aligned with product goals. The article illustrates this distinction through a voice agent that produced overlapping responses because the system lacked a rule limiting simultaneous output, a failure an eval could identify but not prevent. Effective evaluators also require relevant context, such as current information, retrieved sources, user goals, policies, and complete execution traces, since generic AI judges may make inaccurate assessments using stale or incomplete knowledge. Teams can turn evaluation explanations into actionable engineering feedback for prompts, tool definitions, retrieval, permissions, code, and regression tests, creating a supervised improvement loop rather than uncontrolled self-modification. Product requirements must be translated into operational, testable rules, and teams should define approval limits, enforce important boundaries in code, preserve traces of agent behavior, and ensure failures systematically inform future system changes.
Aug 13, 2026
1,721 words in the original blog post.
Enterprise AI reliability depends on more than selecting a capable model, as agents increasingly rely on business context and complex execution systems involving retrieval, tools, memory, permissions, code, and subagents. The authors describe a three-layer architecture in which models provide reasoning, a context layer supplies governed definitions, trusted data, policies, and workflows, and a harness manages how agents act, while evaluation spans all layers to identify failures. Public model benchmarks provide only partial assurance because performance can vary substantially with context quality and system design, leading to plausible but incorrect outputs based on stale, conflicting, or incomplete information. Effective context operations require continuous mining, development, governance, delivery, and learning, while harness evaluation should use traces to inspect complete agent trajectories rather than only final outputs. Different failure types call for deterministic code checks, LLM-based judges, or agent-based judges, and confirmed production failures should feed regression tests and engineering workflows. By connecting trace-based evaluation with governed, reusable business context, organizations can diagnose whether errors arise from knowledge or execution, distribute fixes across agents, and accumulate operational knowledge that improves reliability over time.
Aug 12, 2026
2,359 words in the original blog post.
Arize AX now natively supports OpenTelemetry GenAI semantic conventions, allowing applications and managed agent platforms that emit gen_ai.* telemetry to send traces directly through OTLP without requiring custom client-side conversion processors. During ingestion, AX maps supported GenAI attributes into structured OpenInference fields, covering operation and span types, model and provider details, messages, token usage, tool calls and results, request parameters, and retrieved documents, while retaining the original attributes and prioritizing explicit OpenInference fields when present. This normalization enables trace inspection, agent and workflow debugging, evaluations, token and cost analysis, and consistent observability across custom services and low-code or managed platforms such as Microsoft Agent Framework and CrewAI Studio. OpenInference remains suited to teams that control instrumentation and want its stable AI-focused schema and auto-instrumentation, while OpenTelemetry GenAI conventions are useful when frameworks already produce standard GenAI spans; AX supports both approaches within the same project.
Aug 11, 2026
793 words in the original blog post.
The EU AI Act is presented as turning Responsible AI principles such as fairness, transparency, oversight, robustness, privacy, and accountability into auditable operational evidence for specific AI systems over time. The author argues that product and engineering teams should combine RAI and evaluation programs by assigning metrics, owners, thresholds, review processes, and release consequences, while validating automated evaluators against human judgments rather than relying on uncalibrated LLM-judge scores. For potentially high-risk Annex III systems, especially rapidly changing agents, teams are encouraged to begin instrumentation before the anticipated late-2027 timeline because historical compliance evidence cannot be recreated retrospectively. Suggested practices include redacted end-to-end traces, offline and live evaluations, human-review queues, benchmark datasets, CI release gates, monitoring, versioned documentation, and access audit logs, with careful decisions on retention, sampling, data minimization, and EU data residency. Using a creditworthiness assistant as an example, the piece describes how these capabilities could document retrieval, scoring, explanations, human intervention, regressions, and post-release drift while improving product reliability. It also emphasizes that observability platforms cannot classify systems, conduct conformity assessments, make legal judgments, or yet provide tamper-proof records, leaving those responsibilities to organizational governance and legal teams.
Aug 10, 2026
2,036 words in the original blog post.
Orchestrator-executor agent systems divide work between a capable, expensive model that plans, delegates, verifies, and synthesizes results and cheaper specialized models that perform bounded, token-intensive tasks such as research, coding, extraction, and tool use. Although the architecture has appeared in research since 2023, recent improvements in lower-cost models have made it more economically viable, with reported results from Anthropic and other vendors indicating that cheaper workers can retain much of an all-frontier-model system’s quality at substantially lower cost. The central measure for selecting executor models is argued to be cost per successfully completed task rather than token pricing, since models with lower per-token prices may consume more tokens or perform less reliably. Evidence cited suggests that strong orchestration remains necessary because weaker models often struggle to decompose tasks, evaluate evidence, and manage delegation effectively, while simple model-routing approaches have not consistently outperformed using the best single model. Major providers including Anthropic and OpenAI now offer tooling for multi-agent configurations, but the text emphasizes that organizations should evaluate architectures and model combinations against their own workloads, including quality, latency, reliability, and total task cost.
Aug 07, 2026
1,474 words in the original blog post.
AI agent observability requires more than traditional application performance monitoring because agentic systems follow nondeterministic paths involving prompts, model outputs, retrieval, memory, tool calls, and interactions with other agents, making it difficult to reproduce failures or infer causes from logs and metrics alone. The article argues for a reasoning layer that can interpret telemetry, reconstruct agent intent and trajectories, identify likely root causes, adapt to changing behavior, and prioritize significant failures amid large volumes of traces. It describes Amazon Bedrock AgentCore as infrastructure that runs agents and emits OpenTelemetry-compatible data, while Arize AX provides evaluations, experiments, trace analysis, and AI-assisted investigation tools such as Alyx and Signal. Effective observability should capture complete execution trajectories, version all inputs and configurations, link intent to outcomes, protect sensitive data, retain traces based on risk, and convert production incidents into evaluation datasets. This approach supports an auditable improvement cycle in which production evidence informs testing and remediation, while human review remains important for agents with broad access to systems, data, or deployment processes.
Aug 06, 2026
1,986 words in the original blog post.
Signal is a managed agent integrated within Arize AX that aids in debugging production AI agents by continuously reviewing production traces, identifying recurring failure patterns, and converting them into prioritized issues with supporting evidence, a likely cause, and recommended next steps. It operates within a controlled loop where production behavior is evaluated, investigations are conducted, and proposed changes are tested before deployment. Signal's investigations can delve into the codebase with repository access, proposing pull requests that developers review. It is particularly useful for identifying failures that are difficult to spot through dashboards alone, such as incorrect agent or tool selection, silent fallback to model memory, or cost and latency regressions. Evaluations help pinpoint runs that do not meet an application's quality criteria, and Signal's findings can be used to create regression datasets to prevent the recurrence of similar failures. While Signal handles the time-consuming investigation process, developers retain control over validating causes and evaluating proposed changes before any are merged into production. Signal's capabilities are accessible across all Arize AX plans, with repository-backed features and broader managed-agent workflows available as Enterprise capabilities.
Aug 04, 2026
3,116 words in the original blog post.