DebugConfig
relationalai.config.config_fields
Configure debug server and error-reporting behavior.
This controls local debugging features such as the debug server host/port and whether extra debug logs or full stack traces are shown.
Examples
Section titled “Examples”Minimal YAML (in raiconfig.yaml):
default_connection: sfconnections: sf: type: snowflake # ...debug: show_full_traces: trueConfigure debug settings using a dict:
>>> from relationalai.config import Config>>> cfg = Config(debug={"show_full_traces": True})Attributes
Section titled “Attributes”DebugConfig.host: (str, optional)Debug server host. If omitted, a default host is used.
.show_debug_logs
Section titled “.show_debug_logs”DebugConfig.show_debug_logs: boolShow debug log messages.
.show_full_traces
Section titled “.show_full_traces”DebugConfig.show_full_traces: boolShow full stack traces in errors.