> ## Documentation Index
> Fetch the complete documentation index at: https://arize-ax.mintlify.site/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# July 2026

## Chart dataset and experiment distributions on your dashboards

July 21, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Dashboards and Visualizations</Badge>

Bar chart widgets can now be backed by datasets and experiments, not just project models, so you can visualize how any column, annotation, or evaluation is distributed across a dataset or experiment run directly on your dashboards. Click a bar to drill straight into the underlying dataset examples or the experiment comparison view.

Learn more about [dashboard widgets](/docs/ax/observe/dashboards/widgets).

## Run Gemini 3.6 Flash and Gemini 3.5 Flash-lite in the Playground and evaluators

July 21, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Models and Integrations</Badge>

Select `gemini-3.6-flash` and `gemini-3.5-flash-lite` from the model picker to prototype prompts and score traces with Google's latest Flash lineup. Both models are available through the direct Gemini and Vertex AI providers, support a 65,536-token maximum output, and accept audio file input.

Learn more about [model integrations](/docs/ax/security-and-settings/integrations-playground/overview).

## Manage annotation configs, dataset examples, and restrictions from the CLI

July 21, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">CLI Commands</Badge>

Three new AX CLI commands let you script more of your workspace management: update an existing annotation config, delete specific examples from a dataset version, and list the resource restrictions in your space.

The code example below runs each of the three new commands:

```bash theme={null}
# Update the allowed values and optimization direction of a categorical annotation config
ax annotation-configs update categorical "response-quality" \
  --value good --value bad \
  --optimization-direction MAXIMIZE

# Delete specific examples from a dataset version
ax datasets delete-examples "my-dataset" \
  --version-id 0a1b2c3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d \
  --example-ids '["8f14e45f-ea1c-4b3a-9d21-2b0c0a1f9e77"]'

# List the project restrictions in your space
ax resource-restrictions list --resource-type PROJECT
```

Learn more about the [AX CLI](/docs/api-clients/cli/overview).

## Review Signal issues across your whole agent fleet

July 21, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Agents</Badge>

The Agent Swarms page now surfaces Signal issues from every project in one space-wide view, grouped by severity, so you can triage your agent fleet without opening each project's Signal tab one at a time. Open any issue to read its investigation and act on it in place, whether you add it to a dataset, create an evaluator, or open a fix PR. When you enable Signal on a project, you can now choose which agent integration runs it instead of defaulting to the Arize-managed runtime.

Learn more about [Signal](/docs/ax/observe/signal).

## Score traces with your own remote evaluators on enterprise accounts

July 21, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Evaluators</Badge>

Remote evaluators are now enabled for all enterprise accounts, so you can score spans, traces, and sessions with evaluation logic you host at your own HTTP endpoint rather than relying only on built-in templates.

Learn more about [remote evaluators](/docs/ax/evaluate/remote-evaluators).

## Connect AWS Bedrock, Vertex AI, NVIDIA NIM, and custom endpoints through the REST API

July 20, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Models and Integrations</Badge>

The `/v2/integrations` REST API now supports four more LLM providers, so you can provision AWS Bedrock, Vertex AI, NVIDIA NIM, and custom OpenAI-compatible endpoints programmatically instead of configuring each one by hand in the UI.

The code example below creates a Vertex AI integration through the REST API and the CLI:

<Tabs>
  <Tab title="REST">
    ```bash theme={null}
    curl -X POST https://api.arize.com/v2/integrations \
      -H "Authorization: Bearer $ARIZE_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "type": "LLM",
        "name": "vertex-ai-prod",
        "config": {
          "provider": "VERTEX_AI",
          "project_id": "my-gcp-project",
          "location": "us-central1",
          "project_access_label": "arize-vertex-access"
        }
      }'
    ```
  </Tab>

  <Tab title="CLI">
    ```bash theme={null}
    ax ai-integrations create \
      --name "vertex-ai-prod" \
      --provider VERTEX_AI \
      --provider-metadata '{"project_id": "my-gcp-project", "location": "us-central1", "project_access_label": "arize-vertex-access"}'
    ```
  </Tab>
</Tabs>

Learn more about [AI provider integrations](/docs/ax/security-and-settings/integrations-playground/overview).

## Save and reuse custom dataset views

July 17, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Datasets and Experiments</Badge>

Custom dataset views are now generally available on every account, backed by durable storage so your saved configurations persist across sessions. Capture the columns, filters, and sort order you use most on a dataset's examples, then switch between saved views instead of reconfiguring the table each time.

## Fixes and improvements

July 16–22, 2026

**Models and Integrations**

* <Badge color="surface">Fix</Badge> Use Anthropic Claude models through Vertex AI again, with request headers and parameters handled correctly for Vertex's API.
* <Badge color="surface">Fix</Badge> Run GPT-5 and o-series models in the Playground on Azure, which now sends the token limit these models require.
* <Badge color="surface">Improvement</Badge> Evaluate longer sessions and traces with `gpt-4.1`, now supported up to a 1M-character context.

**Evaluators**

* <Badge color="surface">Fix</Badge> Reference dataset columns by name in chained evaluators, including columns whose names match experiment outputs such as `input` or `output`.
* <Badge color="surface">Improvement</Badge> Create evaluators with the scope preset to match the template you start from, so Session and Trajectory templates no longer default to Span.
* <Badge color="surface">Fix</Badge> Create and fetch template evaluators through the SDK and CLI without deserialization errors from the new `use_structured_output` field.

**Tracing and Sessions**

* <Badge color="surface">Fix</Badge> Track LLM cost on spans imported through file upload, which now preserves the cost attributes on ingest.
* <Badge color="surface">Improvement</Badge> See tool-call arguments in the Input panel for tool spans sent with OpenTelemetry GenAI conventions.
* <Badge color="surface">Fix</Badge> Share a direct link to a specific session that opens with full context on the dashboard.
* <Badge color="surface">Fix</Badge> Jump to the latest available data reliably in an empty project view, without a previous project's time range carrying over.

**Dashboards and Visualizations**

* <Badge color="surface">Fix</Badge> See correct timestamps at fine granularities in half-hour-offset time zones.

**CLI Commands**

* <Badge color="surface">Improvement</Badge> Pass naive timestamps to any AX CLI command and have them interpreted as UTC.

**SDKs and REST APIs**

* <Badge color="surface">Fix</Badge> Keep shared service API keys active after removing the user who created them.

## See all experiments in one place, grouped your way

July 15, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Datasets and Experiments</Badge>

A new Experiments page in the left navigation brings every experiment in your space together, independent of the dataset each one belongs to, so you can review and compare results across projects without opening datasets one at a time. Group the view by target, source, or dataset to bucket related runs the way that fits your analysis.

<Frame>
  <img src="https://storage.googleapis.com/arize-assets/doc-images/changelog/changelog-experiments-tab.png" alt="the new experiments tab in the sidebar" />
</Frame>

Learn more about [experiments](/docs/ax/improve/set-up-an-experiment).

## REST API v2 now uses consistent casing and schema names

July 15, 2026

<Badge color="surface">Breaking</Badge>  <Badge color="surface">SDKs and REST APIs</Badge>

The Arize AX REST API v2 follows one naming convention across every resource, so your generated client code and types stay consistent and predictable: enum values use `SCREAMING_SNAKE_CASE`, and request and response schemas follow a verb-first pattern. Update any hardcoded enum values and regenerate your client from the latest spec, because the API now rejects legacy lowercase enum values with a `400` instead of coercing them.

* **Enum recasing** — values such as `admin`, `openAI`, and `template_evaluation` are now `ADMIN`, `OPEN_AI`, and `TEMPLATE_EVALUATION`.
* **Verb-first schemas** — response types such as `IntegrationListResponse` and `SpanDeleteResponse` are now `ListIntegrationsResponse` and `DeleteSpansResponse`.

The code example below downloads the updated OpenAPI specification so you can regenerate your API client from it:

```bash theme={null}
# Fetch the latest OpenAPI 3.1 spec, then point your client generator at openapi.yaml
curl -fsSL https://api.arize.com/v2/spec.yaml -o openapi.yaml
```

For more information, refer to the [Arize REST API](/docs/ax/rest-reference/overview) documentation.

## Model registry lists only actively supported models

July 14, 2026

<Badge color="surface">Deprecation</Badge>  <Badge color="surface">Models and Integrations</Badge>

The Playground and evaluators now offer only models that providers still serve. Models retired by their providers, along with the deprecated Gemini 2.0 family, are removed from the Arize AX model registry, and the default direct Gemini model is now `gemini-3.5-flash`.

* **End-of-life removals** — retired OpenAI, Anthropic, Vertex AI, AWS Bedrock, and NVIDIA NIM snapshots, including `gpt-4-0314` and the legacy Claude 3, 3.5, and 3.7 versions.
* **Gemini 2.0 deprecation** — `gemini-2.0-flash`, `gemini-2.0-flash-001`, and `gemini-2.0-flash-lite` are removed, and saved prompts that referenced them fall back gracefully.

Learn more about [model integrations](/docs/ax/security-and-settings/integrations-playground/overview).

## Agent Playground and Agent Endpoints are generally available

July 13, 2026

<Badge color="surface">Improvement</Badge>  <Badge color="surface">Agents</Badge>

Agent Playground, Agent Endpoints, and Agent Experiment Traces are now generally available on every account, including self-hosted deployments, so you can run and compare agent experiments without a feature flag. The Improve navigation groups them with Prompt Playground under a single Playgrounds section next to Prompts.

Learn more about [agent experiments](/docs/ax/improve/agent-experiments-overview).

## Update existing dataset examples in place with the Python SDK

July 10, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Datasets and Experiments</Badge>

You can now update the content of existing dataset examples by ID with the new `update_examples` method in the Python SDK, so you can correct or enrich examples without recreating the dataset or losing example identity across experiment iterations. Apply the change in place on the current version, or pass `new_version` to capture it as a new dataset version.

The code example below updates two fields on an existing example, keeping its ID stable:

```python theme={null}
import os

from arize import ArizeClient

client = ArizeClient(api_key=os.environ["ARIZE_API_KEY"])  # read the key from the environment

updated_examples = [
    {
        "id": "your-example-id",  # the example to update; IDs that don't exist are ignored
        "expected_output": "Paris (updated)",
        "eval.Correctness.label": "correct",
    },
]

result = client.datasets.update_examples(
    dataset="dataset-name-or-id",
    space="your-space-name-or-id",  # required when passing a dataset name
    examples=updated_examples,
    # new_version="v2-fixed-answers",  # optional: capture the update as a new version
)

print(result.dataset_version_id, result.example_ids)
```

Learn more about [updating dataset examples](/docs/api-clients/python/version-8/client-resources/datasets).

## Attach multiple session and trace evaluators to a single task

July 10, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Evaluators</Badge>

You can now add more than one session- or trace-level evaluator to the same online task, so a single task can score conversations across several dimensions instead of being limited to one session evaluator.

Learn more about [session-level evals](/docs/ax/evaluate/evaluators/trace-and-session-evals/session-level-evaluations).

## Self-serve 13-month data retention on Pro plans

July 10, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Data Fabric</Badge>

Pro-plan users can now extend data retention to 13 months on their own, unlocking longer historical analysis as a self-serve upgrade. Start from a gated time-range preset (Last Month, 3 Months, 6 Months) or the Upgrade Retention button on the Pro plan card, and the add-on attaches to your existing subscription with an immediate prorated charge and no change to your renewal date.

Learn more about [pricing and usage](/docs/ax/security-and-settings/pricing-and-usage).

## New OpenAI GPT-5.6 models in the Playground and evaluators

July 9, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Models and Integrations</Badge>

Three OpenAI GPT-5.6 models are now available anywhere you pick an OpenAI model, including the Playground and evaluators, so you can run prompts and LLM-as-judge evaluations on OpenAI's latest lineup. Each model exposes a new `max` reasoning-effort level for the most demanding tasks.

* **Model options** — `gpt-5.6-sol` (frontier), `gpt-5.6-terra` (balanced), and `gpt-5.6-luna` (efficient).
* **Reasoning effort** — choose from `none`, `low`, `medium`, `high`, `xhigh`, and the new `max` level.

Learn more about the [OpenAI integration](/docs/ax/security-and-settings/integrations-playground/openai).

## Bring your own Anthropic key for managed agents

July 9, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Agents</Badge>

You can now run managed agents on your own Anthropic API key instead of the Arize-managed default, so agent jobs use your provider account and quota. Mark an Anthropic provider as eligible for agents, then pick it as the runtime in the agent preset editor or the setup wizard, or set a space-wide default runtime so new agents inherit it automatically.

Learn more about [agent presets](/docs/ax/agents/agent-presets).

## Fixes and improvements

July 9–15, 2026

**Tracing and Sessions**

* <Badge color="surface">Fix</Badge> Track accurate cost and token totals across agent and chain traces that report SDK rollups.
* <Badge color="surface">Improvement</Badge> Search on span start time, end time, and latency in the attributes panel, and include them in span exports.

**Evaluators**

* <Badge color="surface">Fix</Badge> Get completed results from evaluators you apply directly in the Playground.

**Models and Integrations**

* <Badge color="surface">Fix</Badge> Select Gemini 2.5 and newer models in the Playground model picker.
* <Badge color="surface">Fix</Badge> Track accurate trace cost for Vertex AI models.
* <Badge color="surface">Fix</Badge> Run non-pro GPT-5 models against custom and OpenAI-compatible endpoints that implement only Chat Completions.

**Dashboards and Visualizations**

* <Badge color="surface">Fix</Badge> Filter distribution widgets and monitors by the values you set.

**Annotations**

* <Badge color="surface">Fix</Badge> Scope annotation configurations to the specific trace you apply them to.

**Alyx**

* <Badge color="surface">Improvement</Badge> Submit dataset example annotations once at least one row is labeled.
* <Badge color="surface">Improvement</Badge> Tell Alyx how many spans to run a task on and whether to skip already-evaluated spans.

## Enter spaces with any resource role you have been granted

July 8, 2026

<Badge color="surface">Fix</Badge>  <Badge color="surface">SDKs and REST APIs</Badge>

Custom roles with a space-level binding allow for entry into their spaces, so a user granted a single resource permission such as dataset access reaches the space in the UI and through the v2 spaces API. Any role binding in a space's lineage grants entry, while per-resource permissions stay enforced on the resources inside.

* **Space entry gate** — holding any binding in the space lineage, or legacy membership, is enough to enter the space.
* **Full coverage** — restores both the in-app space view and the `GET /v2/spaces` and `GET /v2/spaces/{id}` endpoints for custom-role users.

Learn more about [custom roles](/docs/ax/security-and-settings/sso-and-rbac/custom-roles).

## Control Arize AX's appearance with a System theme and refreshed light mode

July 7, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Dashboards and Visualizations</Badge>

Your profile menu now offers a System theme that follows your operating system's light or dark setting, and light mode itself has a warmer, higher-contrast redesign, so Arize AX matches the rest of your desktop and stays easy to read.

* **System theme** — choose System, Light, or Dark; System follows your OS appearance and switches live as it changes, with no reload.
* **Refreshed light mode** — a warm-neutral palette with layered elevation and vivid success, warning, danger, and info status colors.
* **Accessibility** — links, severe text, and input placeholders now meet WCAG AA contrast.

## Fixes and improvements

July 6–8, 2026

**Alyx**

* <Badge color="surface">Improvement</Badge> Alyx can now order aggregated results and return the top-N groups by a column you choose, so it can answer ranking questions such as which models drive the most cost.

**Evaluators**

* <Badge color="surface">Improvement</Badge> Code evaluator test runs now send only the dataset columns you have mapped to the evaluator's arguments, so the test payload matches what the evaluator receives.

**Playground**

* <Badge color="surface">Fix</Badge> You can now drag to select text in the prompt variable editor.

**Tracing and Sessions**

* <Badge color="surface">Improvement</Badge> The trace slideover now hides the Evaluations and Annotations tabs by default and omits internal-only metadata from evaluation tables; re-enable the tabs anytime from Customize Tabs.
* <Badge color="surface">Fix</Badge> Trace field values that contain non-ASCII, multibyte characters are now truncated on character boundaries, so international text stays intact and valid.

**Dashboards and Visualizations**

* <Badge color="surface">Fix</Badge> You can now filter pivot table widgets on null or empty values and get the matching rows.

**Webhooks and Events**

* <Badge color="surface">Fix</Badge> Webhook endpoints now accept requests that include a trailing query string, so integrations that append one deliver successfully.

## Evaluate agents with new prebuilt trajectory and session evaluators

July 1, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Evaluators</Badge>

The evaluator gallery now includes seven new LLM-as-a-judge templates for agent trajectories and multi-turn sessions, so you can measure agent goal completion, path efficiency, and session quality without writing evaluation prompts from scratch.

* **New agent and session evaluators** — Goal Completion, Path Efficiency, Reasoning Coherence, Session Resolution, Topic Coherence, Session Frustration, and Session Completion.
* **Organized by workflow** — templates are grouped into Response Quality, Code Quality, Trajectory, Session, RAG, and Security so you can find the right evaluator faster.
* **Scope at a glance** — each template shows whether it runs on a span, trace, or session.
* **Security evaluators for everyone** — the Security template group is now available to all users.

Learn more about [creating evaluators](/docs/ax/evaluate/create-evaluators).

## Capture more LLM and tool detail with new OpenInference span attributes

July 1, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Tracing and Sessions</Badge>

Arize now stores four additional OpenInference span attributes as typed, queryable columns, so you can filter and analyze traces on richer LLM, tool, and embedding metadata.

* **`llm.system`** — the system or provider that served the LLM call.
* **`llm.finish_reason`** — why the model stopped generating.
* **`tool.id`** — the tool-call identifier, now available as a top-level attribute.
* **`embedding.invocation_parameters`** — the parameters used for embedding calls.

Learn more about [OpenInference semantic conventions](/docs/ax/observe/tracing-concepts/openinference-semantic-conventions).

## Run prompts and evaluations on Claude Sonnet 5

June 30, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Models and Integrations</Badge>

Claude Sonnet 5 (native Anthropic) is now available across the Prompt Playground and LLM-as-a-judge evaluators, so you can test and evaluate your prompts on Anthropic's latest Sonnet-tier model without leaving Arize.

* **Available everywhere you pick a model** — select Claude Sonnet 5 in the Prompt Playground and when configuring evaluators.
* **Automatic cost tracking** — input, output, and cache token costs are recorded for every call, so spend shows up in your usage and evaluation costs.
* **Adaptive reasoning** — like other latest Claude models, Sonnet 5 manages its own reasoning effort, so the temperature, top-p, and top-k controls no longer apply.

Learn more about the [Prompt Playground](/docs/ax/prompts/prompt-playground).

## Map evaluator variables to dataset columns in the Prompt Playground

June 29, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Playground</Badge>

You can now map evaluator template variables to differently-named dataset columns directly in the Prompt Playground, and Alyx can fill in those mappings for you, so you can run an evaluator over any dataset without rewriting its template to match your column names.

* **Per-instance variable mappings** — a Mappings control on each evaluator instance maps template variables such as `{{input}}` to dataset columns such as `question`, and warns you when a mapping is missing.
* **Automatic mapping with Alyx** — the Align Eval flow detects column mismatches and applies the correct mappings before running.
* **Preview with resolved values** — the preview table shows each `variable → column` mapping alongside the resolved values.

Learn more about [aligning evals to human feedback](/docs/ax/evaluate/align-evals-to-human-feedback).

## Launch prebuilt agents with a guided setup wizard

June 27, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Agents</Badge>

Agent Studio now includes a guided setup wizard that walks you through connecting, configuring, and launching a ready-made agent, so you can spin up a purpose-built agent, such as an on-call SRE or a failing-trace investigator, without assembling skills, projects, and tasks by hand.

* **Ready-made agents** — start from templates like SRE/On-Call, Investigate Failing Traces, Fix a Bug, Incident Commander, and Cost.
* **Guided Connect, Configure, and Review** — connect skills, point the agent at a project or repository, and launch it as a session or a recurring automation.

Learn more about [Agent Studio](/docs/ax/agents/agent-studio).

## Analyze experiment trends with the new Experiment Analysis view

June 25, 2026

<Badge color="surface">New</Badge>  <Badge color="surface">Datasets and Experiments</Badge>

The redesigned Experiment Analysis view, a refined trend chart paired with a Scoreboard, is now the default charting experience on the dataset Experiments page, so you can spot performance changes across experiment runs at a glance instead of reading a flat summary line chart.

* **Trend chart** — track how scores and metrics change across experiment runs over time.
* **Scoreboard** — compare the key metrics for your selected experiments side by side.

Learn more about [comparing experiments](/docs/ax/develop/datasets-and-experiments/compare-experiments).

## Fixes and improvements

June 25–July 1, 2026

**Evaluators**

* <Badge color="surface">Improvement</Badge> You can now start an evaluator run on a dataset directly from the slideover in a single step.

**Tracing and Sessions**

* <Badge color="surface">Improvement</Badge> Your span Input/Output and Attributes display format (Pretty, Raw, JSON) now persists across sessions.
* <Badge color="surface">Improvement</Badge> The Projects flyout now lists recently viewed projects with a 7-day volume sparkline, and prompt tools appear as top-level navigation items.
* <Badge color="surface">Improvement</Badge> Added a Clear Filters action to the tracing table empty state so you can recover from a filtered-empty view in one click.

**Agents**

* <Badge color="surface">Improvement</Badge> Automation detail slide-overs now show the agent's investigation report, with clickable references to the traces it examined.
