What's New in Version 1.0.2
Version 1.0.2 of the relationalai Python package is now available!
To upgrade, activate your virtual environment and run the following command:
pip install --upgrade relationalaiBug Fixes
Section titled “Bug Fixes”-
raiconfig.tomlis deprecated, and PyRel now reliably emits a visible warning when it loads araiconfig.tomlconfig. The warning points you torai initto migrate or create araiconfig.yaml. -
Fixed an issue in Snowflake stored procedures where importing your package could fail or behave unexpectedly if it triggered config auto-discovery at import time. This could attempt to read config files in a restricted runtime, and raise errors such as
ConfigFileNotFoundError.If your code relied on implicit config loading, update it to construct a
Configexplicitly and pass it into the SDK objects you create. For example:cfg = create_config(...). In stored procedures, prefer creating the config inside the stored procedure handler rather than at module import time.See
create_config()for the supported config sources and defaults.