What's New in Version 0.9.4
This release introduces a new show_full_traces
configuration option that can be used to enable full error stack traces in the Python client for an improved debugging experience.
To upgrade, activate your virtual environment and run the following command:
pip install --upgrade relationalai
New Features and Enhancements
Section titled “New Features and Enhancements”-
You can now enable full error stack traces by setting the new
show_full_traces
configuration option toTrue
. This helps with debugging by showing complete exception details when errors occur.By default,
show_full_traces
isFalse
, so error messages remain concise for a cleaner user experience. To see full traces, set this option programmatically or via your config file:Add the following to your config file:
raiconfig.toml active_profile = "default"show_full_traces = true[profile.default]user = "<MY_SNOWFLAKE_USER>"password = "<MY_SNOWFLAKE_PASSWORD>"account = "<MY_SNOWFLAKE_ACCOUNT>"role = "<MY_SNOWFLAKE_ROLE>"warehouse = "<MY_SNOWFLAKE_WAREHOUSE>"import relationalai as raicfg = rai.Config({"user": "<MY_SNOWFLAKE_USER>","password": "<MY_SNOWFLAKE_PASSWORD>","account": "<MY_SNOWFLAKE_ACCOUNT>","role": "<MY_SNOWFLAKE_ROLE>","warehouse": "<MY_SNOWFLAKE_WAREHOUSE>","show_full_traces": True})model = rai.Model("MyModel", config=cfg)