Change8

Migrating to RAGAS v0.3.2-rc1

Version v0.3.2-rc1 introduces 3 breaking changes. This guide details how to update your code.

Released: 8/19/2025

3
Breaking Changes
3
Migration Steps
3
Affected Symbols

⚠️ Check Your Code

If you use any of these symbols, you need to read this guide:

experimentCLIsimulation

Breaking Changes

Issue #1

The `experiment` function has been moved from the `experimental` module to the main `ragas` package.

Issue #2

The CLI functionality has been migrated from the `experimental` module to the main `ragas` package.

Issue #3

The simulation functionality has been removed entirely.

Migration Steps

  1. 1
    If you were using `experiment` from `experimental`, import it directly from `ragas` now.
  2. 2
    If you were using the CLI from `experimental`, use the main package entry point now.
  3. 3
    Remove any dependencies or calls related to the removed simulation functionality.

Release Summary

This release moves key features like `experiment` and the CLI from experimental to the main package, removes simulation functionality, and adds support for Python 3.13.

Need More Details?

View the full release notes and all changes for RAGAS v0.3.2-rc1.

View Full Changelog