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
property Cube.auto_explain: AutoExplain | None
>>> table_name = "Example" >>> data_types = {"Country": "String", "Quantity": "int"} >>> keys = {"Country"} >>> table = session_without_ai.create_table( ... table_name, data_types=data_types, keys=keys ... ) >>> cube = session_without_ai.create_cube(table) >>> cube.auto_explain is None True
>>> table = session_with_ai.create_table( ... table_name, data_types=data_types, keys=keys ... ) >>> cube = session_with_ai.create_cube(table) >>> cube.auto_explain is not None True
Was this page helpful?