What's New in Version 0.13.1
Version 0.13.1 of the relationalai Python package is now available!
To upgrade, activate your virtual environment and run the following command:
pip install --upgrade relationalaiNew Features and Enhancements
Section titled “New Features and Enhancements”- Queries that are automatically stopped by our performance guard rails (such as when a missing join creates a large, slow cross-product) now raise a
GuardRailsExceptioninstead of a generic error. This helps you see which relation caused the problem and why, so you can fix your query faster. If your code handles exceptions, consider adding special handling forGuardRailsException(along with timeouts and other errors) to show clearer messages or help users review their joins and query logic.