Skip to main content
This guide helps you migrate from Arize Python SDK v7 to v8.

Key Architectural Changes

Unified Client The new v8 introduces a single ArizeClient that replaces all specialized clients from v7. This provides a unified, discoverable interface following the pattern:
Explicit space_id Many operations now require passing space_id explicitly per call, rather than configuring it once during client initialization. This enables working with multiple spaces from a single client instance. Keyword-only arguments The new v8 methods use keyword-only parameters (using * in signatures) to improve code clarity and prevent positional argument errors.

Quick Reference

This section provides a quick lookup table for migrating from v7 to v8 methods. Each subsection shows the client initialization change and method mappings. For detailed migration guides with parameter changes and code examples, see the linked pages.

Pandas Client

The Pandas Client is used for batch logging of LLM traces, evaluations, and traditional ML model predictions using pandas DataFrames.

Stream Client

The Stream Client is used for real-time logging of model predictions, providing lower latency than batch logging.

Datasets & Experiments

The Datasets & Experiments Client is used for creating and managing datasets, running experiments, and tracking evaluation results.

Datasets

Experiments

Exporter

The Exporter Client is used for exporting data from Arize back to pandas DataFrames or Parquet files for analysis, debugging, or building custom workflows.

Next Steps

For detailed migration guides with code examples: