Skip to content

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:

Terminal window
pip install --upgrade relationalai
  • You can now enable full error stack traces by setting the new show_full_traces configuration option to True. This helps with debugging by showing complete exception details when errors occur.

    By default, show_full_traces is False, 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>"