Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Atoti Python SDK
None
atoti.SessionConfig.ai
>>> table_name = "Example" >>> data_types = {"Country": "String", "Quantity": "int"} >>> keys = {"Country"} >>> table = session_with_ai_disabled.create_table( ... table_name, data_types=data_types, keys=keys ... ) >>> cube = session_with_ai_disabled.create_cube(table) >>> cube.auto_explain is None True
>>> table = session_with_ai_enabled.create_table( ... table_name, data_types=data_types, keys=keys ... ) >>> cube = session_with_ai_enabled.create_cube(table) >>> cube.auto_explain is not None True
Was this page helpful?