Migrating to RAGAS v0.3.2
Version v0.3.2 introduces 3 breaking changes. This guide details how to update your code.
Released: 8/19/2025
3
Breaking Changes
3
Migration Steps
4
Affected Symbols
⚠️ Check Your Code
If you use any of these symbols, you need to read this guide:
experimentAnswerSimilarityragas.experimentalragas.cliBreaking 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 feature has been removed.
Migration Steps
- 1If you were using `experiment` from `experimental`, import it directly from `ragas` now.
- 2If you were using the CLI from `experimental`, use the main package entry point now.
- 3Remove any usage related to the simulation feature as it has been removed.
Release Summary
This release moves key features like `experiment` and the CLI from experimental to the main package, adds prompt saving/loading capabilities, and removes the simulation feature.
Need More Details?
View the full release notes and all changes for RAGAS v0.3.2.
View Full Changelog