mito-ai 0.1.40__tar.gz → 0.1.41__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mito-ai might be problematic. Click here for more details.
- {mito_ai-0.1.40 → mito_ai-0.1.41}/PKG-INFO +1 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/__init__.py +12 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/_version.py +1 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/app_builder/handlers.py +1 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/handlers.py +1 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/message_history.py +9 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/models.py +1 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/agent_execution_prompt.py +2 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/agent_smart_debug_prompt.py +8 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/agent_system_message.py +17 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/constants.py +3 -2
- mito_ai-0.1.41/mito_ai/file_uploads/handlers.py +225 -0
- mito_ai-0.1.41/mito_ai/file_uploads/urls.py +21 -0
- {mito_ai-0.1.40/venv/share/jupyter/labextensions/mito_ai → mito_ai-0.1.41/mito_ai/labextension}/build_log.json +102 -100
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/package.json +4 -2
- {mito_ai-0.1.40/venv/share/jupyter/labextensions/mito_ai → mito_ai-0.1.41/mito_ai/labextension}/schemas/mito_ai/package.json.orig +3 -1
- mito_ai-0.1.40/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.55d9f8ca386d87856d2d.js → mito_ai-0.1.41/mito_ai/labextension/static/lib_index_js.01a962c68c8fae380f30.js +1782 -1027
- mito_ai-0.1.41/mito_ai/labextension/static/lib_index_js.01a962c68c8fae380f30.js.map +1 -0
- mito_ai-0.1.41/mito_ai/labextension/static/node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs.182232e7bc6311fe4528.js +63 -0
- mito_ai-0.1.41/mito_ai/labextension/static/node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs.182232e7bc6311fe4528.js.map +1 -0
- mito_ai-0.1.40/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.264103d9addd1e166113.js → mito_ai-0.1.41/mito_ai/labextension/static/remoteEntry.9a70f033717ba8689564.js +49 -25
- mito_ai-0.1.41/mito_ai/labextension/static/remoteEntry.9a70f033717ba8689564.js.map +1 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_auth_dist_esm_providers_cognito_tokenProvider_tokenProvider_mjs.16430abf3466c3153f59.js +4574 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_auth_dist_esm_providers_cognito_tokenProvider_tokenProvider_mjs.16430abf3466c3153f59.js.map +1 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_Amplify_mjs.3c0035b95fe369aede82.js +2345 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_Amplify_mjs.3c0035b95fe369aede82.js.map +1 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs-node_modul-758875.dc495fd682071d97070c.js +7498 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs-node_modul-758875.dc495fd682071d97070c.js.map +1 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_dist_esm_index_mjs.6bac1a8c4cc93f15f6b7.js +1021 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_dist_esm_index_mjs.6bac1a8c4cc93f15f6b7.js.map +1 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_ui-react_dist_esm_index_mjs.61289bff0db44828605b.js +60178 -0
- mito_ai-0.1.41/mito_ai/labextension/static/vendors-node_modules_aws-amplify_ui-react_dist_esm_index_mjs.61289bff0db44828605b.js.map +1 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/openai_client.py +1 -1
- mito_ai-0.1.41/mito_ai/tests/file_uploads/__init__.py +2 -0
- mito_ai-0.1.41/mito_ai/tests/file_uploads/test_handlers.py +267 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/message_history/test_message_history_utils.py +57 -4
- mito_ai-0.1.41/mito_ai/utils/__init__.py +3 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/mito_server_utils.py +7 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/server_limits.py +1 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/telemetry_utils.py +26 -9
- {mito_ai-0.1.40 → mito_ai-0.1.41}/package.json +3 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/AiChatPlugin.ts +2 -1
- mito_ai-0.1.41/src/Extensions/AiChat/ChatMessage/AlertBlock.tsx +141 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/AssistantCodeBlock.tsx +3 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/ChatInput.tsx +14 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/ChatMessage.tsx +7 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatTaskpane.tsx +38 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/jupyterSettingsManager.ts +16 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/NotebookToStreamlit.tsx +25 -8
- mito_ai-0.1.41/src/Extensions/AppBuilder/auth-popup-deploy.tsx +144 -0
- mito_ai-0.1.41/src/Extensions/AppBuilder/auth.ts +39 -0
- mito_ai-0.1.41/src/Extensions/AppBuilder/authPopupUtils.tsx +46 -0
- mito_ai-0.1.41/src/Extensions/AppBuilder/aws-config.ts +34 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ContextManager/VariableInspector.tsx +8 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/AgentComponents/ErrorFixupToolUI.tsx +7 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/AgentComponents/GetCellOutputToolUI.tsx +3 -3
- mito_ai-0.1.41/src/components/AgentComponents/RunAllCellsToolUI.tsx +26 -0
- mito_ai-0.1.41/src/components/AttachFileButton.tsx +237 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/IconButton.tsx +3 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/TextButton.tsx +1 -1
- mito_ai-0.1.41/src/icons/PaperClipIcon.tsx +16 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/AssistantCodeBlock.test.tsx +35 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/ChatInput.test.tsx +279 -142
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AppBuilder/NotebookToStreamlit.test.tsx +80 -80
- mito_ai-0.1.41/src/tests/AppBuilder/auth.test.ts +97 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/agentActions.tsx +74 -15
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/websockets/completions/CompletionModels.ts +1 -1
- mito_ai-0.1.40/style/GetCellOutputToolUI.css → mito_ai-0.1.41/style/AgentToolUIComponent.css +12 -6
- mito_ai-0.1.41/style/AlertBlock.css +174 -0
- mito_ai-0.1.41/style/AuthPopup.css +440 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ChatMessage.css +0 -118
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/PythonCode.css +7 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/button.css +9 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/tsconfig.json +1 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/normalizer +2 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/package.json.orig +10 -10
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/package.json.orig +14 -14
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/package.json.orig +5 -5
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/package.json.orig +9 -9
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/package.json.orig +7 -7
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/package.json.orig +13 -13
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/package.json.orig +10 -10
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/package.json.orig +17 -17
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/package.json.orig +12 -12
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/package.json.orig +7 -7
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/package.json.orig +13 -13
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/package.json.orig +23 -23
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/package.json.orig +8 -8
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/package.json.orig +9 -9
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/package.json.orig +9 -9
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/package.json.orig +7 -7
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/package.json.orig +11 -11
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/package.json.orig +8 -8
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/package.json.orig +11 -11
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/package.json.orig +9 -9
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/package.json.orig +3 -3
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/package.json.orig +7 -7
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/package.json.orig +32 -32
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/package.json.orig +12 -12
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/package.json.orig +11 -11
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/package.json.orig +11 -11
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/package.json.orig +11 -11
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/package.json.orig +6 -6
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/package.json.orig +12 -12
- mito_ai-0.1.41/venv/share/jupyter/lab/static/2211.3123543dcc217549bbb0.js +1 -0
- mito_ai-0.1.40/venv/share/jupyter/lab/static/265.6f9e37c0b72db64203b1.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/265.075516620075be935f98.js +1 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/4010.7ccc4c383efb7272d781.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/4010.5271baedaaff5113c699.js +1 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/5521.0337f193af4e5eee6057.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/5521.8d4f6dfc471f500e4311.js +1 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/6208.feaef264d58c31fc4201.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/6173.2a6e8f549894d9f11044.js +1 -1
- mito_ai-0.1.41/venv/share/jupyter/lab/static/6180.6e630074d1e028953a44.js +1 -0
- mito_ai-0.1.40/venv/share/jupyter/lab/static/6733.bf3398ba9bb890f0fb67.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/6733.bb68f2476e482c2aace2.js +2 -2
- mito_ai-0.1.40/venv/share/jupyter/lab/static/9046.2a28e08629ab71d9ebb1.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/9046.99c477ea375dcbb8c7ca.js +1 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/1518.3e4807844734ff34efd0.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/9137.179a3c47465e7fb8f067.js +1 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/9892.1c3a710069391fd93b5d.js → mito_ai-0.1.41/venv/share/jupyter/lab/static/9892.6d289e7baed8c64d88e2.js +2 -2
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/build_log.json +99 -99
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/index.html +1 -1
- mito_ai-0.1.41/venv/share/jupyter/lab/static/jlab_core.4a2106ef64a5fd6bb332.js +1 -0
- mito_ai-0.1.41/venv/share/jupyter/lab/static/main.de00b63f7838f32348fe.js +1 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/package.json +154 -154
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/third-party-licenses.json +98 -98
- {mito_ai-0.1.40/mito_ai/labextension → mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai}/build_log.json +102 -100
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/package.json +4 -2
- {mito_ai-0.1.40/mito_ai/labextension → mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai}/schemas/mito_ai/package.json.orig +3 -1
- mito_ai-0.1.40/mito_ai/labextension/static/lib_index_js.55d9f8ca386d87856d2d.js → mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.01a962c68c8fae380f30.js +1782 -1027
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.01a962c68c8fae380f30.js.map +1 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs.182232e7bc6311fe4528.js +63 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs.182232e7bc6311fe4528.js.map +1 -0
- mito_ai-0.1.40/mito_ai/labextension/static/remoteEntry.264103d9addd1e166113.js → mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.9a70f033717ba8689564.js +49 -25
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.9a70f033717ba8689564.js.map +1 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_auth_dist_esm_providers_cognito_tokenProvider_tokenProvider_mjs.16430abf3466c3153f59.js +4574 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_auth_dist_esm_providers_cognito_tokenProvider_tokenProvider_mjs.16430abf3466c3153f59.js.map +1 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_Amplify_mjs.3c0035b95fe369aede82.js +2345 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_Amplify_mjs.3c0035b95fe369aede82.js.map +1 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs-node_modul-758875.dc495fd682071d97070c.js +7498 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_core_dist_esm_singleton_apis_fetchAuthSession_mjs-node_modul-758875.dc495fd682071d97070c.js.map +1 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_dist_esm_index_mjs.6bac1a8c4cc93f15f6b7.js +1021 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_dist_esm_index_mjs.6bac1a8c4cc93f15f6b7.js.map +1 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_ui-react_dist_esm_index_mjs.61289bff0db44828605b.js +60178 -0
- mito_ai-0.1.41/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_aws-amplify_ui-react_dist_esm_index_mjs.61289bff0db44828605b.js.map +1 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/yarn.lock +2505 -40
- mito_ai-0.1.40/mito_ai/labextension/static/lib_index_js.55d9f8ca386d87856d2d.js.map +0 -1
- mito_ai-0.1.40/mito_ai/labextension/static/remoteEntry.264103d9addd1e166113.js.map +0 -1
- mito_ai-0.1.40/src/Extensions/AiChat/ChatMessage/AlertBlock.tsx +0 -90
- mito_ai-0.1.40/src/Extensions/AppBuilder/auth.ts +0 -179
- mito_ai-0.1.40/src/tests/AppBuilder/auth.test.ts +0 -56
- mito_ai-0.1.40/venv/share/jupyter/lab/static/2211.04a176892c4c3071836c.js +0 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/6180.edc40db2566e62650403.js +0 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/jlab_core.39ffbf5b9a750816e020.js +0 -1
- mito_ai-0.1.40/venv/share/jupyter/lab/static/main.2155fa5c4dce2b7a12e6.js +0 -1
- mito_ai-0.1.40/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.55d9f8ca386d87856d2d.js.map +0 -1
- mito_ai-0.1.40/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.264103d9addd1e166113.js.map +0 -1
- {mito_ai-0.1.40 → mito_ai-0.1.41}/.babelrc +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/.copier-answers.yml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/.eslintrc.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/.gitignore +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/.prettierignore +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/.yarnrc.yml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/CLAUDE.md +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/LICENSE +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/README.md +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/app-experiments/Bike_Violations_B_Summons.csv +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/app-experiments/bike-violations.ipynb +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/app-experiments/cfo dashboard.ipynb +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/app-experiments/meta acquisitions retro.ipynb +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/babel.config.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/declarations.d.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/dev/README.md +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/dev/generate_ai_chats.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/jest.config.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/jupyter-config/jupyter_server_config.d/mito_ai.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/anthropic_client.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/app_builder/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/app_builder/models.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/auth/README.md +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/auth/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/auth/handlers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/auth/urls.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/agent_auto_error_fixup_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/agent_execution_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/chat_completion_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/code_explain_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/completion_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/inline_completer_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/smart_debug_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/completion_handlers/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/chat_name_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/chat_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/chat_system_message.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/explain_code_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/inline_completer_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/prompt_constants.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/smart_debug_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/providers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/crawlers/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/crawlers/base_crawler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/crawlers/constants.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/crawlers/snowflake.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/handlers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/models.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/urls.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/db/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/mssql/compose.yml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/mssql/init/setup.sql +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/mysql/compose.yml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/mysql/init/setup.sql +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/oracle/compose.yml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/oracle/init/setup.sql +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/postgres/compose.yml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/docker/postgres/init/setup.sql +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/enterprise/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/enterprise/utils.py +0 -0
- {mito_ai-0.1.40/mito_ai/tests → mito_ai-0.1.41/mito_ai/file_uploads}/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/gemini_client.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/schemas/mito_ai/toolbar-buttons.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/style.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/style_index_js.5876024bb17dbd6a3ee6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/style_index_js.5876024bb17dbd6a3ee6.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/labextension/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/log/handlers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/log/urls.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/logger.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/rules/handlers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/rules/urls.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/rules/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/settings/handlers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/settings/urls.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/settings/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/agent_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/prompts/prompt_constants.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/prompts/prompt_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/prompts/streamlit_app_creation_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/prompts/streamlit_error_correction_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/prompts/streamlit_finish_todo_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/streamlit_agent_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/streamlit_system_prompt.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/streamlit_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_conversion/validate_streamlit_app.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_preview/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_preview/handlers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_preview/manager.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/streamlit_preview/urls.py +0 -0
- {mito_ai-0.1.40/mito_ai/tests/streamlit_conversion → mito_ai-0.1.41/mito_ai/tests}/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/conftest.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/create_agent_system_message_prompt_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/data/prompt_lg.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/data/prompt_sm.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/data/prompt_xl.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/data/stock_data.sqlite3 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/conftest.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/connections_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/mssql_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/mysql_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/oracle_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/postgres_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/schema_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/sqlite_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/db/test_db_constants.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/message_history/test_generate_short_chat_name.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/open_ai_utils_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/performance_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_anthropic_client.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_azure.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_capabilities.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_gemini_client.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_mito_server_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_model_resolution.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_openai_client.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_provider_completion_exception.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_provider_limits.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_providers.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_retry_logic.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/test_stream_mito_server_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/providers/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/rules/conftest.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/rules/rules_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/server_limits_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/settings/conftest.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/settings/settings_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/settings/test_settings_constants.py +0 -0
- {mito_ai-0.1.40/mito_ai/tests/utils → mito_ai-0.1.41/mito_ai/tests/streamlit_conversion}/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/streamlit_conversion/test_streamlit_agent_handler.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/streamlit_conversion/test_streamlit_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/streamlit_conversion/test_validate_streamlit_app.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/streamlit_preview/test_streamlit_preview_manager.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/test_constants.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/test_telemetry.py +0 -0
- {mito_ai-0.1.40/mito_ai → mito_ai-0.1.41/mito_ai/tests}/utils/__init__.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/utils/test_anthropic_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/utils/test_gemini_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/tests/version_check_test.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/anthropic_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/create.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/db.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/gemini_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/message_history_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/open_ai_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/provider_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/schema.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/version_utils.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/utils/websocket_base.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/version_check.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/mypy.ini +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/package-lock.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/pyproject.toml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/requirements.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/schema/toolbar-buttons.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/setup.py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/CTACarousel.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatHistoryManager.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/ChatDropdown.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/ChatDropdownItems.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/Citation.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/CodeBlockToolbar.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/MarkdownBlock.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/PythonCode.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/RevertQuestionnaire.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/ScrollableSuggestions.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatMessage/UserCodeBlock.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/ChatWidget.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/CodeDiffDisplay.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/FirstMessage.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/token.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AiChat/utils.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/AppBuilderPlugin.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/DeployAppNotification.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/cellConversionUtils.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/fileUtils.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/requirementsUtils.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/AppBuilder/visualization_test_notebook.ipynb +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ContextManager/ContextManagerPlugin.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ContextManager/FileInspector.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ErrorMimeRenderer/CollapsibleWarningBlock.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ErrorMimeRenderer/ErrorMimeRendererPlugin.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ErrorMimeRenderer/errorUtils.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/InlineCompleter/index.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/InlineCompleter/provider.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/NotebookFooter/NotebookFooter.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/NotebookFooter/index.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/SettingsManagerPlugin.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/SettingsWidget.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/database/ConnectionForm.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/database/ConnectionList.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/database/DatabasePage.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/database/GettingStartedVideo.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/database/model.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/general/GeneralPage.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/rules/RulesForm.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/rules/RulesPage.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/rules/models.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/SettingsManager/support/SupportPage.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/StreamlitPreview/StreamlitPreviewPlugin.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/ToolbarButtons/ToolbarButtonsPlugin.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/VersionCheck/index.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/emptyCell/EmptyCellPlugin.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/emptyCell/emptyCell.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/Extensions/status/index.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/commands.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/AgentComponents/AgentComponentHeader.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/AgentComponents/AssumptionToolUI.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/DatabaseButton.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/DropdownMenu.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/LoadingCircle.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/LoadingDots.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/ModelSelector.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/NextStepsPills.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/SelectedContextContainer.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/TextAndIconButton.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/components/ToggleButton.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/hooks/useDebouncedEffect.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/hooks/useDebouncedFunction.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/AcceptIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/AiIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/AlertIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/AppBuilderExcludeCellIcon.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/AppBuilderIncludeCellIcon.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/ChatIcon.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/ChatIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/Check.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/CodeIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/CopyIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/DatabaseIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/DatabaseOutlineIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/ErrorIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/ExpandIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/GarbageIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/LightbulbIcon.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/MagicWand.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/MagnifyingGlassIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/MitoLogo.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/NotebookFooter/CodeIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/NotebookFooter/TextIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/NucleausIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/NucleusIcon.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/OpenIndicatorIcon.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/Pencil.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/PlayButtonIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/RejectIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/RobotHeadIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/RuleIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/SupportIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/UndoIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/WrenchAndScrewdriverIcon.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/XMark.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/icons/index.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/index.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/restAPI/RestAPI.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/restAPI/utils.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/CTACarousel.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/ChatDropdown.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/ChatHistoryManager.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/ChatMessage.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/CodeBlockToolbar.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/ModelSelector.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/NextSteps.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/RestoreCheckpoint.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/UserCodeBlock.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AiChat/getBase64EncodedCellOutput.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AppBuilder/requirementsUtils.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AppBuilder/transformInvalidLines.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/AppBuilder/transformMitoAppInput.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/ContextManager/ContextManagerPlugin.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/NotebookFooter/notebookFooter.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/SettingsManager/ConnectionList.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/__mocks__/fileMock.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/__mocks__/jupyterMocks.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/__mocks__/openaiMocks.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/__mocks__/styleMock.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/setup/setupTests.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/utils/blacklistedWords.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/tests/utils/processChatHistoryForErrorGrouping.test.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/arrays.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/blacklistedWords.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/chatHistory.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/checkpoint.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/classNames.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/codeDiff.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/copyToClipboard.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/errors.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/fileName.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/models.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/nodeToPng.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/notebook.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/scroll.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/scrollMask.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/sleep.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/strings.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/stripe.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/user.tsx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/version_check.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/utils/waitForNotebookReady.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/websockets/BaseWebsocketClient.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/websockets/appBuilder/appBuilderModels.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/websockets/appBuilder/appBuilderWebsocketClient.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/src/websockets/completions/CompletionsWebsocketClient.ts +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/AgentComponentHeader.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/AssumptionTool.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/CTACarousel.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ChatDropdown.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ChatInput.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ChatTaskpane.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/Citation.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/CodeBlock.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ConnectionForm.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/DatabasePage.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/DropdownMenu.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ErrorFixupToolUI.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ErrorMimeRendererPlugin.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/IconButton.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/MarkdownMessage.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ModelSelector.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/NextStepsPills.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/NotebookFooter.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/RevertQuestionnaire.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/RulesForm.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/SelectedContextContainer.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/SettingsWidget.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/TextAndIconButton.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/TextButton.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/ToggleButton.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/base.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/icons.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/index.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/index.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/style/statusItem.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/tsconfig.test.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/Activate.ps1 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/activate +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/activate.csh +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/activate.fish +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/debugpy +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/debugpy-adapter +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/distro +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/docutils +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/f2py +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/hatch-jupyter-builder +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/hatchling +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/httpx +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/ipython +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/ipython3 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jlpm +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jsonpointer +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jsonschema +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-dejavu +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-events +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-execute +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-kernel +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-kernelspec +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-lab +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-labextension +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-labhub +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-migrate +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-nbconvert +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-run +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-server +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-troubleshoot +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/jupyter-trust +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/keyring +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/markdown-it +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/numpy-config +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/openai +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pip +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pip3 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pip3.11 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pipreqs +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pybabel +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pygmentize +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyjson5 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyrsa-decrypt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyrsa-encrypt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyrsa-keygen +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyrsa-priv2pub +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyrsa-sign +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/pyrsa-verify +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/python +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/python3 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/python3.11 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2html +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2html4 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2html5 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2latex +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2man +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2odt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2pseudoxml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2s5 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2xetex +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/rst2xml +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/send2trash +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/streamlit +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/streamlit.cmd +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/tqdm +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/trove-classifiers +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/twine +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/unidiff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/watchmedo +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/websockets +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/bin/wsdump +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/jupyter_server_config.d/jupyter-lsp-jupyter-server.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/jupyter_server_config.d/jupyterlab.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/jupyter_server_config.d/mito_ai.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/jupyter_server_config.d/notebook_shim.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/labconfig/page_config.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/etc/jupyter/nbconfig/notebook.d/pydeck.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/include/site/python3.11/greenlet/greenlet.h +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/pyvenv.cfg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/applications/jupyterlab.desktop +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/icons/hicolor/scalable/apps/jupyterlab.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/kernels/python3/kernel.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/kernels/python3/logo-32x32.png +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/kernels/python3/logo-64x64.png +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/kernels/python3/logo-svg.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/commands.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/context-menu.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/property-inspector.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/shell.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/top-bar.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/kernels-settings.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/notification.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/palette.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/print.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sanitizer.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sessionDialogs.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/themes.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/utilityCommands.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/inline-completer.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/manager.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/completer.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/foreign.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/tracker.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/csv.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/tsv.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/main.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/download.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/browser.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/download.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/open-browser-tab.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/open-with.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/widget.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/completer.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/about.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/jupyter-forum.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/launch-classic.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/menu.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/consoles.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/inspector.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/notebooks.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/metadataforms.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/completer.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/export.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/panel.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/tools.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/tracker.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/form-ui.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/shortcuts.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/registry.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/consoles.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/files.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/notebooks.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/plugin.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/indicator.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/menu.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/sidebar.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/100.1d14ca44a3cc8849349f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1039.3fe94e87219c0ed159d3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1096.dd4c563e0483cbbeb9c9.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1189.c1482e88f0e949753db6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1208.4b9ab7b231d39ebdbc3f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1219.b5630aa3a46050fddc27.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1268.e75d8a6dd557ac8957ca.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1359.d5f23f0e2a6f67b69751.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1423.4bcf4453e1c1d12d872f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1436.2c11d9dee0ad6f49e968.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1445.a0e099c27d073217031a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1449.7026e8748d2a77e15d5b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1462.57e39f487257f25263d4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1491.010c623dd546db976e95.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1673.b0ee25168543434bdbca.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1737.a5fc97075f693ec36fe6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1832.b1ede2fe899bdec88938.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1834.7445ad0c82371ac40737.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1838.839690ff17ec3c532f0a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1887.56f83f163a18c61efb16.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1912.f16dddc294d66c3c81e9.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1954.f1c519cb1415c7da3e8c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1960.f8d8ef8a91360e60f0b9.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1962.6a7da74e809b70d5200d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1969.86e3168e52802569d650.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1986.26029e99ef54a5652df8.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1991.84fc123d7cfe8ae2948e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/1cb1c39ea642f26a4dfe.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2023.59b30086fbeff6d17e3b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/227.6bd3154334bb91c5ca1c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/227.6bd3154334bb91c5ca1c.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2280.6614699f54522fffbc00.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/232.5419cbec68e3fd0cf431.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/232.5419cbec68e3fd0cf431.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2353.ab70488f07a7c0a7a3fd.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/246.326a6482593e8a7bcd58.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2467.4227742ac4b60289f222.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/247.84259ab142dd8c151fc2.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2491.c169ecbc5fde2bcdb1b3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2550.75fcaa650ffac405c0dc.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2574.327dadfe49120269ff31.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2576.b98b7b23adeec4cb6932.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2590.99e505d19b964439aa31.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2601.2429d5a03c8465ae6290.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2633.ea053b40991eb5adbc69.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2641.e77441e7a3e0d12834c5.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2658.d1cae1b08b068d864368.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/26683bf201fb258a2237.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2681.a47f40e38ecd31ccd687.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2707.61050e600b0aa9624127.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2729.cafaf0caf2c0c83ac9fe.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2794.05495c139ed000b57598.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2823.0b6015b5e03c08281f41.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2880.8483d51b11998bfe8e4b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2957.bc5eb9549a0b15c44916.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/2959.b24c9f67d639376f5ead.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3048.59e6166a886a78f4f698.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/30e889b58cbc51adfbb0.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3111.33574d9124842f355bce.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3112.0757b31e24c5334fda73.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3122.fed5688acdcf6ff6aa6b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/321.0fb994fd384a54491584.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3257.30af681f0c294efb65f7.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3257.30af681f0c294efb65f7.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/32792104b5ef69eded90.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3282.22e78350d54fcaf3c6c8.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3293.375c6685d72662fc062f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3303.b5596c0715d2d58332fb.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3358.7ba73a6804155b619b44.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3372.8eeafd96de9a7a205f40.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/339.380593b40d8d41150a4e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/355254db9ca10a09a3b5.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3616.a4271ffcf2ac3b4c2338.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/36e0d72d8a7afc696a3e.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3709.e33bc30c83272aa85628.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/373c04fd2418f5c77eea.eot +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3763.56191df5d72d2ffa5aa6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3780.c9294dc98ae926717741.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3799.eaa0438bc5c41bad0516.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3824.5e23be1e37fce5b7c6b3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3832.c6026c483bb46cc8e599.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3974.79f68bca9a02c92dab5e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3991.678edf189fe92a216c70.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3bc6ecaae7ecf6f8d7f8.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3de784d07b9fa8f104c1.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/3f6d3488cf65374f6f67.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4001.80ab3ef5300d7ce2d1fe.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4053.4945facc348478fd59f4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4068.9cc41f46f729f2c4369b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4076.b4d803d8bf1bd6c97854.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4090.eec44f90a54aa383426c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4266.155b468271987c81d948.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4296.721da424585874d0789e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4311.b44e8bc4829e0b1226d2.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4323.b2bd8a329a81d30ed039.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4350.8c8a0e7a3ffe036494e1.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4353.8572f6845cfde92dc152.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4364.b9b49d8d836882f44e62.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4372.645626a2452c190dbb22.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4372.645626a2452c190dbb22.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4408.f24dd0edf35e08548967.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4462.c3c6de84bc9399e0290d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4484.e1d2565d1a3daa5fe5f1.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4486.8d2f41ae787607b7bf31.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4528.43328125d98d6cfdfa99.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4611.bd2b768223b0cd570834.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4616.04cfbd55593c51921cc7.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4728.56c0b9d87316b2fa012e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4728.56c0b9d87316b2fa012e.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4735.7731d551ca68bcb58e9f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4797.3740ef47b224a11a7fab.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/481e39042508ae313a60.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4838.8db4c61349bfba200547.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4855.29e8dc6982ba4873487d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4878.f7557c5c99a54b40c49b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/492.5f186062d2dcdf79c86c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4928.6cb408e4def87534970d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4981.eed4ddb90566e90e3df4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/4982.c609185756485c6e3344.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5085.a38923f36b551620798a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5135.7f204de2153e4d85406d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5211.83e78dadcef89cae04bf.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5224.8a6bbc774d20be66fdfb.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5244.eefac84704ad30f00af3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5317.f4bba2e3d0f4fdd088f7.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5318.d5df5c275e925c22d780.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5338.38c32bdfb0695f9b501f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5489.7fab44eac7538297b164.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5492.44728a640c37a4b4aa0c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5566.c76ea61eb723ee84e2cf.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5606.e03dfa10c124a03f36ba.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/580.4ea1e6182e0b35ff091a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5829.0e46d479b4ade4783661.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5847.930208c25e45ecf30657.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5862.be1ec453e8db6844c62d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5877.72ab5a29e95ce21981e4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5929.d561797f8259994ecdd8.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5942.05cbcd55c5f45ff7db43.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5987.7e967df5417044d337a4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/5cda41563a095bd70c78.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6003.94cdab770c801f3c46f7.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6060.52dca011e9f2f279fc5e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6095.6e79e3bad86e054aa8c8.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6145.c422868290460078c013.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6166.2bc9ac8e2156c0701a52.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6170.65d899f43342f1e34bf1.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6214.617de47747c5a9b19ef7.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6275.e99f9312900c481b467d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6294.b3cb5e16527b9d09b4a2.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6364.c592f3101de349ba3904.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6372.edc0712a4be855493530.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6412.ebdf8da40f1ba8272df9.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6439.1723c0b3882bf535486e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6460.d9aaa1e48da295c6035d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/649.4081045b1737e4213282.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6492.804d51a693edf6978ef4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6540.51c00e890179a4832552.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6540.51c00e890179a4832552.js.LICENSE.txt +0 -0
- /mito_ai-0.1.40/venv/share/jupyter/lab/static/6733.bf3398ba9bb890f0fb67.js.LICENSE.txt → /mito_ai-0.1.41/venv/share/jupyter/lab/static/6733.bb68f2476e482c2aace2.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6767.4b82d96c237ca7e31bc6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6779.051cfbcb0700a96839b2.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6831.1df8fa4cabb5b1c19803.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6843.dabcc3c9658bc6ded6d1.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6874.bb2f7fbc6ce56eecc800.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6896.af1d649e0efae70b7b1a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6941.465bebbd3d8a024f5f15.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6974.b5b353b8af28fbc91291.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6986.a89a5aba790481992875.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/6993.c93f5a810fcf441cbb6f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7136.b312751fbb25b73f5e71.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/721921bab0d001ebff02.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7250.b88d0a5e237ff5ff1aad.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7260.b47dcaccbe7991104e8a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7269.962f078e97afc4f68e79.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/72bc573386dd1d48c5bb.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/731.82a7b980b5b7f4b7a14f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7318.7cc6b4b0b3151b205ecb.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7371.63b12ce793df713ab95b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7425.f1c25f6c8aaec77e8635.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7445.7c793c8e1720f8ec4f85.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7575.2e3e32236d5667bba43f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7587.3112240b6b82407b0f16.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7694.1cbff84dccb512476b7c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7741.2ad1372a5862c4522be3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7756.93d0ab41829355a147ab.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7769.d39df7673ee2660a9ac4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7803.0c8929610218552319bf.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7856.dd9523e57bed80f1f694.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7879.5c485d200dc01b6f43ff.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7881.c5a234ce171f347c94e2.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7990.01eaa552261b6e12a74a.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/7990.01eaa552261b6e12a74a.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/79d088064beb3826054f.eot +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8038.aea19fb961abd87d6255.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/805.2a0b8ac50aa8e6ab096f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8103.ed2b21471519b58a3d73.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8232.e31d5021e77a9b5215d6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8313.aac706f5036a7209b3a8.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8326.9dda93079a9e4f1b9be6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8354.94077232b086a13541cc.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8368.c75a4b32ae45ec88465d.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8391.e5fb2e35cced405eb819.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/84.fe0a55d7756c37585fb4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8418.42e29778d4b49fb54e8e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8493.3b6106e45d5661438d8e.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8537.21b8b9ae0d81ae264499.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8606.bc1b0136e61d173913cd.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/867.e814bf26fbfc77fc4f16.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/870673df72e70f87c91a.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/874.fbd3ae653c7337f3425b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8753.56da17175b663d61f9d3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8778.a3883f9acac5a903d6be.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8779.6eebdb56785e3d38a457.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8786.a2bc3dfc1ea13c04ba94.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8786.a2bc3dfc1ea13c04ba94.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8816.d7ec52fb31e9c6749593.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8830.d5bb102ed8737ffe38cb.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8855.b17b9969fce42d0398e4.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/88b98cad3688915e50da.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/89.933673451ca4a51053cb.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8915.ab253990b1581460b255.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/898.ed04189e15f0a3781fb1.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8ea8791754915a898a31.woff2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/8ea8dbb1b02e6f730f55.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9023.2ff687d7ff50df3719fc.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9085.5a959b5878e7afd8a878.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9085.5a959b5878e7afd8a878.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9123.501219cd782693d6539f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9136.8f4cc6ecadcf250fd8ac.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9296.c82d1f1a8d9204ca6ed7.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9311.ad0012965aa52db7a3e3.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9329.1683d45b6478b7c81a24.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9359.34d1b961b733676193cb.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9400.90fd1d2212781c80b587.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9474.01b4e1d1e3376f4a5919.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9517.7056cafdf1da3a136d45.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9572.f91bbaa33e932d524f8f.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/961.29c067b15a524e556eed.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/961.29c067b15a524e556eed.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9652.a8d2e5854bcae4d40041.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9674eb1bd55047179038.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9746.c7e86b432363dfd28caa.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9834b82ad26e2a37583d.woff2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9881.37d189ff085cb3468683.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/9890.75ea8024e2c1c49c89a3.js +0 -0
- /mito_ai-0.1.40/venv/share/jupyter/lab/static/9892.1c3a710069391fd93b5d.js.LICENSE.txt → /mito_ai-0.1.41/venv/share/jupyter/lab/static/9892.6d289e7baed8c64d88e2.js.LICENSE.txt +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/a009bea404f7a500ded4.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/a3b9817780214caf01e8.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/af04542b29eaac04550a.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/af6397503fcefbd61397.ttf +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/af96f67d7accf5fd2a4a.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/b418136e3b384baaadec.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/be0a084962d8066884f7.svg +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/bootstrap.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/c49810b53ecc0d87d802.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/c56da8d69f1a0208b8e0.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/cb9e9e693192413cde2b.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/cda59d6efffa685830fd.ttf +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/e4299464e7b012968eed.eot +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/e42a88444448ac3d6054.woff2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/e8711bbb871afd8e9dea.ttf +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/f9217f66874b0c01cd8c.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/fc6ddf5df402b263cfb1.woff +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/index.out.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/static/style.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/install.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/package.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/747.67662283a5707eeb4d4c.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/remoteEntry.5cbb9d2323598fbda535.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/style.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/third-party-licenses.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/schemas/mito_ai/toolbar-buttons.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/style.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.5876024bb17dbd6a3ee6.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.5876024bb17dbd6a3ee6.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/asciidoc/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/base/cell_id_anchor.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/base/celltags.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/base/display_priority.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/base/mathjax.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/base/null.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/basic/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/basic/index.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/classic/base.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/classic/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/classic/index.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/classic/static/style.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/compatibility/display_priority.tpl +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/compatibility/full.tpl +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/base.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/index.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/mermaidjs.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/static/index.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/static/theme-dark.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/lab/static/theme-light.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/base.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/display_priority.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/index.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/null.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/report.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/latex/style_python.tex.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/markdown/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/markdown/index.md.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/python/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/python/index.py.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/reveal/base.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/reveal/cellslidedata.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/reveal/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/reveal/index.html.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/rst/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/rst/index.rst.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/script/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/script/script.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/webpdf/conf.json +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbconvert/templates/webpdf/index.pdf.j2 +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbextensions/pydeck/extensionRequires.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbextensions/pydeck/index.js +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/jupyter/nbextensions/pydeck/index.js.map +0 -0
- {mito_ai-0.1.40 → mito_ai-0.1.41}/venv/share/man/man1/ipython.1 +0 -0
|
@@ -14,13 +14,18 @@ from mito_ai.settings.urls import get_settings_urls
|
|
|
14
14
|
from mito_ai.rules.urls import get_rules_urls
|
|
15
15
|
from mito_ai.auth.urls import get_auth_urls
|
|
16
16
|
from mito_ai.streamlit_preview.urls import get_streamlit_preview_urls
|
|
17
|
+
from mito_ai.file_uploads.urls import get_file_uploads_urls
|
|
17
18
|
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
19
|
+
# Force Matplotlib to use the Jupyter inline backend.
|
|
20
|
+
# Background: importing Streamlit sets os.environ["MPLBACKEND"] = "Agg" very early.
|
|
21
|
+
# In a Jupyter kernel, that selects a non‑interactive canvas and can trigger:
|
|
22
|
+
# "UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown"
|
|
23
|
+
# which prevents figures from rendering in notebook outputs.
|
|
24
|
+
# We preempt this by selecting the canonical Jupyter inline backend BEFORE any
|
|
25
|
+
# Matplotlib import, so figures render inline reliably. This must run very early.
|
|
26
|
+
# See: https://github.com/streamlit/streamlit/issues/9640
|
|
22
27
|
import os
|
|
23
|
-
os.environ[
|
|
28
|
+
os.environ["MPLBACKEND"] = "module://matplotlib_inline.backend_inline"
|
|
24
29
|
|
|
25
30
|
try:
|
|
26
31
|
from _version import __version__
|
|
@@ -87,6 +92,7 @@ def _load_jupyter_server_extension(server_app) -> None: # type: ignore
|
|
|
87
92
|
handlers.extend(get_log_urls(base_url, open_ai_provider.key_type)) # type: ignore
|
|
88
93
|
handlers.extend(get_auth_urls(base_url)) # type: ignore
|
|
89
94
|
handlers.extend(get_streamlit_preview_urls(base_url)) # type: ignore
|
|
90
|
-
|
|
95
|
+
handlers.extend(get_file_uploads_urls(base_url)) # type: ignore
|
|
96
|
+
|
|
91
97
|
web_app.add_handlers(host_pattern, handlers)
|
|
92
98
|
server_app.log.info("Loaded the mito_ai server extension")
|
|
@@ -156,9 +156,8 @@ class AppBuilderHandler(BaseWebSocketHandler):
|
|
|
156
156
|
success_flag, app_path_result, result_message = await streamlit_handler(notebook_path)
|
|
157
157
|
if not success_flag or app_path_result is None:
|
|
158
158
|
raise Exception(result_message)
|
|
159
|
-
app_path = app_path_result
|
|
160
159
|
|
|
161
|
-
deploy_url = await self._deploy_app(
|
|
160
|
+
deploy_url = await self._deploy_app(app_directory, jwt_token)
|
|
162
161
|
|
|
163
162
|
# Send the response
|
|
164
163
|
self.reply(BuildAppReply(
|
|
@@ -46,7 +46,7 @@ from mito_ai.completions.completion_handlers.agent_execution_handler import get_
|
|
|
46
46
|
from mito_ai.completions.completion_handlers.agent_auto_error_fixup_handler import get_agent_auto_error_fixup_completion
|
|
47
47
|
from mito_ai.utils.telemetry_utils import identify
|
|
48
48
|
|
|
49
|
-
FALLBACK_MODEL = "gpt-
|
|
49
|
+
FALLBACK_MODEL = "gpt-4.1" # Default model to use for safety
|
|
50
50
|
|
|
51
51
|
# The GlobalMessageHistory is responsible for updating the message histories stored in the .mito/ai-chats directory.
|
|
52
52
|
# We create one GlobalMessageHistory per backend server instance instead of one per websocket connection so that the
|
|
@@ -251,7 +251,15 @@ class GlobalMessageHistory:
|
|
|
251
251
|
with self._lock:
|
|
252
252
|
if thread_id not in self._chat_threads:
|
|
253
253
|
return []
|
|
254
|
-
|
|
254
|
+
|
|
255
|
+
thread = self._chat_threads[thread_id]
|
|
256
|
+
display_history = thread.display_history
|
|
257
|
+
|
|
258
|
+
# When we get a thread, update it's last interaction time so that if the
|
|
259
|
+
# user refreshes their browser, this chat will re-appear as the last opened chat.
|
|
260
|
+
self._update_last_interaction(thread)
|
|
261
|
+
self._save_thread_to_disk(thread)
|
|
262
|
+
return display_history
|
|
255
263
|
|
|
256
264
|
async def append_message(
|
|
257
265
|
self,
|
|
@@ -29,7 +29,7 @@ class CellUpdate(BaseModel):
|
|
|
29
29
|
# for now and rely on the AI to respond with the correct types, following the format
|
|
30
30
|
# that we show it in the system prompt.
|
|
31
31
|
class AgentResponse(BaseModel):
|
|
32
|
-
type: Literal['cell_update', 'get_cell_output', 'finished_task']
|
|
32
|
+
type: Literal['cell_update', 'get_cell_output', 'run_all_cells', 'finished_task']
|
|
33
33
|
message: str
|
|
34
34
|
cell_update: Optional[CellUpdate]
|
|
35
35
|
get_cell_output_cell_id: Optional[str]
|
{mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/agent_execution_prompt.py
RENAMED
|
@@ -13,12 +13,14 @@ from mito_ai.completions.prompt_builders.utils import (
|
|
|
13
13
|
get_selected_context_str,
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
+
|
|
16
17
|
def create_agent_execution_prompt(md: AgentExecutionMetadata) -> str:
|
|
17
18
|
variables_str = '\n'.join([f"{variable}" for variable in md.variables or []])
|
|
18
19
|
files_str = '\n'.join([f"{file}" for file in md.files or []])
|
|
19
20
|
ai_optimized_cells_str = '\n'.join([f"{cell}" for cell in md.aiOptimizedCells or []])
|
|
20
21
|
rules_str = get_rules_str(md.additionalContext)
|
|
21
22
|
selected_context_str = get_selected_context_str(md.additionalContext)
|
|
23
|
+
|
|
22
24
|
context_str = f"""Remember to choose the correct tool to respond with.
|
|
23
25
|
|
|
24
26
|
{rules_str}
|
{mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/agent_smart_debug_prompt.py
RENAMED
|
@@ -54,6 +54,14 @@ ERROR CORRECTION:
|
|
|
54
54
|
- Reuse as much of the existing code as possible.
|
|
55
55
|
- DO NOT ADD TEMPORARY COMMENTS like '# Fixed the typo here' or '# Added this line to fix the error'
|
|
56
56
|
- If you encounter a ModuleNotFoundError, you can install the package by adding the the following line to the top of the code cell: `!pip install <package_name> --quiet`.
|
|
57
|
+
- If you encounter a NameError, you can use the RUN_ALL_CELLS tool to run all cells from the top of the notebook to the bottom to bring the variable into scope.
|
|
58
|
+
RUN_ALL_CELLS:
|
|
59
|
+
When you want to execute all cells in the notebook from top to bottom, respond with this format:
|
|
60
|
+
{{
|
|
61
|
+
type: 'run_all_cells',
|
|
62
|
+
message: str
|
|
63
|
+
}}
|
|
64
|
+
Note that if the name error persists even after using run_all_cells, it means that the variable is not defined in the notebook and you should not reuse this tool. Additionally, this tool could also be used to refresh the notebook state.
|
|
57
65
|
|
|
58
66
|
<Example>
|
|
59
67
|
|
{mito_ai-0.1.40 → mito_ai-0.1.41}/mito_ai/completions/prompt_builders/agent_system_message.py
RENAMED
|
@@ -206,6 +206,23 @@ Important information:
|
|
|
206
206
|
===='''
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
+
TOOL: RUN_ALL_CELLS
|
|
210
|
+
|
|
211
|
+
When you want to execute all cells in the notebook from top to bottom, respond with this format:
|
|
212
|
+
|
|
213
|
+
{{
|
|
214
|
+
type: 'run_all_cells',
|
|
215
|
+
message: str
|
|
216
|
+
}}
|
|
217
|
+
|
|
218
|
+
Important information:
|
|
219
|
+
1. Use this tool when you encounter a NameError. For example, if you get an error like "NameError: name 'prompts_df' is not defined", you should use this tool to run all cells from the top of the notebook to the bottom to bring the variable into scope.
|
|
220
|
+
2. Note that if the name error persists even after using run_all_cells, it means that the variable is not defined in the notebook and you should not reuse this tool.
|
|
221
|
+
3. Additionally, this tool could also be used to refresh the notebook state.
|
|
222
|
+
4. If running all cells results in an error, the system will automatically handle the error through the normal error fixing process.
|
|
223
|
+
5. Do not use this tool repeatedly if it continues to produce errors - instead, focus on fixing the specific error that occurred.
|
|
224
|
+
====
|
|
225
|
+
|
|
209
226
|
TOOL: FINISHED_TASK
|
|
210
227
|
|
|
211
228
|
When you have completed the user's task, respond with a message in this format:
|
|
@@ -24,8 +24,9 @@ AZURE_OPENAI_ENDPOINT = os.environ.get("AZURE_OPENAI_ENDPOINT")
|
|
|
24
24
|
AZURE_OPENAI_MODEL = os.environ.get("AZURE_OPENAI_MODEL")
|
|
25
25
|
|
|
26
26
|
# Mito AI Base URLs and Endpoint Paths
|
|
27
|
-
MITO_PROD_BASE_URL = "https://7eax4i53f5odkshhlry4gw23by0yvnuv.lambda-url.us-east-1.on.aws/
|
|
28
|
-
MITO_DEV_BASE_URL = "https://g5vwmogjg7gh7aktqezyrvcq6a0hyfnr.lambda-url.us-east-1.on.aws/
|
|
27
|
+
MITO_PROD_BASE_URL = "https://7eax4i53f5odkshhlry4gw23by0yvnuv.lambda-url.us-east-1.on.aws/v2"
|
|
28
|
+
MITO_DEV_BASE_URL = "https://g5vwmogjg7gh7aktqezyrvcq6a0hyfnr.lambda-url.us-east-1.on.aws/v2"
|
|
29
|
+
MITO_LOCAL_BASE_URL = "http://127.0.0.1:8000/v2" # When you are running the mito completion server locally
|
|
29
30
|
|
|
30
31
|
# Set ACTIVE_BASE_URL manually
|
|
31
32
|
ACTIVE_BASE_URL = MITO_PROD_BASE_URL # Change to MITO_DEV_BASE_URL for dev
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
# Copyright (c) Saga Inc.
|
|
2
|
+
# Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
3
|
+
|
|
4
|
+
import os
|
|
5
|
+
import tempfile
|
|
6
|
+
import tornado
|
|
7
|
+
from typing import Dict, Any
|
|
8
|
+
from jupyter_server.base.handlers import APIHandler
|
|
9
|
+
from mito_ai.utils.telemetry_utils import log_file_upload_attempt, log_file_upload_failure
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class FileUploadHandler(APIHandler):
|
|
13
|
+
# Class-level dictionary to store temporary directories for each file upload
|
|
14
|
+
# This persists across handler instances since Tornado recreates handlers per request
|
|
15
|
+
# Key: filename, Value: dict with temp_dir, total_chunks, received_chunks, logged_upload
|
|
16
|
+
_temp_dirs: Dict[str, Dict[str, Any]] = {}
|
|
17
|
+
|
|
18
|
+
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
19
|
+
super().__init__(*args, **kwargs)
|
|
20
|
+
|
|
21
|
+
@tornado.web.authenticated
|
|
22
|
+
def post(self) -> None:
|
|
23
|
+
"""Handle file upload with multipart form data."""
|
|
24
|
+
try:
|
|
25
|
+
# Validate request has file
|
|
26
|
+
if not self._validate_file_upload():
|
|
27
|
+
return
|
|
28
|
+
|
|
29
|
+
uploaded_file = self.request.files["file"][0]
|
|
30
|
+
filename = uploaded_file["filename"]
|
|
31
|
+
file_data = uploaded_file["body"]
|
|
32
|
+
|
|
33
|
+
# Get notebook directory from request
|
|
34
|
+
notebook_dir = self.get_argument("notebook_dir", ".")
|
|
35
|
+
|
|
36
|
+
# Check if this is a chunked upload
|
|
37
|
+
chunk_number = self.get_argument("chunk_number", None)
|
|
38
|
+
total_chunks = self.get_argument("total_chunks", None)
|
|
39
|
+
|
|
40
|
+
if chunk_number and total_chunks:
|
|
41
|
+
self._handle_chunked_upload(
|
|
42
|
+
filename, file_data, chunk_number, total_chunks, notebook_dir
|
|
43
|
+
)
|
|
44
|
+
else:
|
|
45
|
+
# Log the file upload attempt for regular (non-chunked) uploads
|
|
46
|
+
file_extension = filename.split(".")[-1].lower()
|
|
47
|
+
log_file_upload_attempt(filename, file_extension, False, 0)
|
|
48
|
+
self._handle_regular_upload(filename, file_data, notebook_dir)
|
|
49
|
+
|
|
50
|
+
self.finish()
|
|
51
|
+
|
|
52
|
+
except Exception as e:
|
|
53
|
+
self._handle_error(f"Failed to save file: {str(e)}")
|
|
54
|
+
|
|
55
|
+
def _validate_file_upload(self) -> bool:
|
|
56
|
+
"""Validate that a file was uploaded in the request."""
|
|
57
|
+
if "file" not in self.request.files:
|
|
58
|
+
self._handle_error("No file uploaded", status_code=400)
|
|
59
|
+
return False
|
|
60
|
+
return True
|
|
61
|
+
|
|
62
|
+
def _handle_chunked_upload(
|
|
63
|
+
self,
|
|
64
|
+
filename: str,
|
|
65
|
+
file_data: bytes,
|
|
66
|
+
chunk_number: str,
|
|
67
|
+
total_chunks: str,
|
|
68
|
+
notebook_dir: str,
|
|
69
|
+
) -> None:
|
|
70
|
+
"""Handle chunked file upload."""
|
|
71
|
+
chunk_num = int(chunk_number)
|
|
72
|
+
total_chunks_num = int(total_chunks)
|
|
73
|
+
|
|
74
|
+
# Log the file upload attempt only for the first chunk
|
|
75
|
+
if chunk_num == 1:
|
|
76
|
+
file_extension = filename.split(".")[-1].lower()
|
|
77
|
+
log_file_upload_attempt(filename, file_extension, True, total_chunks_num)
|
|
78
|
+
|
|
79
|
+
# Save chunk to temporary file
|
|
80
|
+
self._save_chunk(filename, file_data, chunk_num, total_chunks_num)
|
|
81
|
+
|
|
82
|
+
# Check if all chunks are received and reconstruct if complete
|
|
83
|
+
if self._are_all_chunks_received(filename, total_chunks_num):
|
|
84
|
+
self._reconstruct_file(filename, total_chunks_num, notebook_dir)
|
|
85
|
+
self._send_chunk_complete_response(filename, notebook_dir)
|
|
86
|
+
else:
|
|
87
|
+
self._send_chunk_received_response(chunk_num, total_chunks_num)
|
|
88
|
+
|
|
89
|
+
def _handle_regular_upload(
|
|
90
|
+
self, filename: str, file_data: bytes, notebook_dir: str
|
|
91
|
+
) -> None:
|
|
92
|
+
"""Handle regular (non-chunked) file upload."""
|
|
93
|
+
file_path = os.path.join(notebook_dir, filename)
|
|
94
|
+
with open(file_path, "wb") as f:
|
|
95
|
+
f.write(file_data)
|
|
96
|
+
|
|
97
|
+
self.write({"success": True, "filename": filename, "path": file_path})
|
|
98
|
+
|
|
99
|
+
def _save_chunk(
|
|
100
|
+
self, filename: str, file_data: bytes, chunk_number: int, total_chunks: int
|
|
101
|
+
) -> None:
|
|
102
|
+
"""Save a chunk to a temporary file."""
|
|
103
|
+
print(f"DEBUG: Saving chunk {chunk_number}/{total_chunks} for file {filename}")
|
|
104
|
+
|
|
105
|
+
# Initialize temporary directory for this file if it doesn't exist
|
|
106
|
+
if filename not in self._temp_dirs:
|
|
107
|
+
temp_dir = tempfile.mkdtemp(prefix=f"mito_upload_{filename}_")
|
|
108
|
+
self._temp_dirs[filename] = {
|
|
109
|
+
"temp_dir": temp_dir,
|
|
110
|
+
"total_chunks": total_chunks,
|
|
111
|
+
"received_chunks": set(),
|
|
112
|
+
}
|
|
113
|
+
print(f"DEBUG: Created temp dir {temp_dir} for file {filename}")
|
|
114
|
+
|
|
115
|
+
# Save the chunk to the temporary directory
|
|
116
|
+
chunk_filename = os.path.join(
|
|
117
|
+
self._temp_dirs[filename]["temp_dir"], f"chunk_{chunk_number}"
|
|
118
|
+
)
|
|
119
|
+
with open(chunk_filename, "wb") as f:
|
|
120
|
+
f.write(file_data)
|
|
121
|
+
|
|
122
|
+
# Mark this chunk as received
|
|
123
|
+
self._temp_dirs[filename]["received_chunks"].add(chunk_number)
|
|
124
|
+
print(
|
|
125
|
+
f"DEBUG: Saved chunk {chunk_number}, total received: {len(self._temp_dirs[filename]['received_chunks'])}/{total_chunks}"
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
def _are_all_chunks_received(self, filename: str, total_chunks: int) -> bool:
|
|
129
|
+
"""Check if all chunks for a file have been received."""
|
|
130
|
+
if filename not in self._temp_dirs:
|
|
131
|
+
print(f"DEBUG: No temp dir found for {filename}")
|
|
132
|
+
return False
|
|
133
|
+
|
|
134
|
+
received_chunks = self._temp_dirs[filename]["received_chunks"]
|
|
135
|
+
is_complete = len(received_chunks) == total_chunks
|
|
136
|
+
print(
|
|
137
|
+
f"DEBUG: Checking completion for {filename}: {len(received_chunks)}/{total_chunks} chunks received, complete: {is_complete}"
|
|
138
|
+
)
|
|
139
|
+
return is_complete
|
|
140
|
+
|
|
141
|
+
def _reconstruct_file(
|
|
142
|
+
self, filename: str, total_chunks: int, notebook_dir: str
|
|
143
|
+
) -> None:
|
|
144
|
+
"""Reconstruct the final file from all chunks and clean up temporary directory."""
|
|
145
|
+
print(f"DEBUG: Starting reconstruction for {filename}")
|
|
146
|
+
|
|
147
|
+
if filename not in self._temp_dirs:
|
|
148
|
+
raise ValueError(f"No temporary directory found for file: {filename}")
|
|
149
|
+
|
|
150
|
+
temp_dir = self._temp_dirs[filename]["temp_dir"]
|
|
151
|
+
file_path = os.path.join(notebook_dir, filename)
|
|
152
|
+
|
|
153
|
+
print(f"DEBUG: Reconstructing from {temp_dir} to {file_path}")
|
|
154
|
+
|
|
155
|
+
try:
|
|
156
|
+
# Reconstruct the file from chunks
|
|
157
|
+
with open(file_path, "wb") as final_file:
|
|
158
|
+
for i in range(1, total_chunks + 1):
|
|
159
|
+
chunk_filename = os.path.join(temp_dir, f"chunk_{i}")
|
|
160
|
+
print(f"DEBUG: Reading chunk {i} from {chunk_filename}")
|
|
161
|
+
with open(chunk_filename, "rb") as chunk_file:
|
|
162
|
+
chunk_data = chunk_file.read()
|
|
163
|
+
final_file.write(chunk_data)
|
|
164
|
+
print(f"DEBUG: Wrote {len(chunk_data)} bytes from chunk {i}")
|
|
165
|
+
|
|
166
|
+
print(f"DEBUG: Successfully reconstructed {filename}")
|
|
167
|
+
finally:
|
|
168
|
+
# Clean up the temporary directory
|
|
169
|
+
print(f"DEBUG: Cleaning up temp dir for {filename}")
|
|
170
|
+
self._cleanup_temp_dir(filename)
|
|
171
|
+
|
|
172
|
+
def _cleanup_temp_dir(self, filename: str) -> None:
|
|
173
|
+
"""Clean up the temporary directory for a file."""
|
|
174
|
+
if filename in self._temp_dirs:
|
|
175
|
+
temp_dir = self._temp_dirs[filename]["temp_dir"]
|
|
176
|
+
try:
|
|
177
|
+
import shutil
|
|
178
|
+
|
|
179
|
+
shutil.rmtree(temp_dir)
|
|
180
|
+
except Exception as e:
|
|
181
|
+
# Log the error but don't fail the upload
|
|
182
|
+
print(
|
|
183
|
+
f"Warning: Failed to clean up temporary directory {temp_dir}: {e}"
|
|
184
|
+
)
|
|
185
|
+
finally:
|
|
186
|
+
# Remove from tracking dictionary
|
|
187
|
+
del self._temp_dirs[filename]
|
|
188
|
+
|
|
189
|
+
def _send_chunk_complete_response(self, filename: str, notebook_dir: str) -> None:
|
|
190
|
+
"""Send response indicating all chunks have been processed and file is complete."""
|
|
191
|
+
file_path = os.path.join(notebook_dir, filename)
|
|
192
|
+
self.write(
|
|
193
|
+
{
|
|
194
|
+
"success": True,
|
|
195
|
+
"filename": filename,
|
|
196
|
+
"path": file_path,
|
|
197
|
+
"chunk_complete": True,
|
|
198
|
+
}
|
|
199
|
+
)
|
|
200
|
+
|
|
201
|
+
def _send_chunk_received_response(
|
|
202
|
+
self, chunk_number: int, total_chunks: int
|
|
203
|
+
) -> None:
|
|
204
|
+
"""Send response indicating a chunk was received but file is not yet complete."""
|
|
205
|
+
self.write(
|
|
206
|
+
{
|
|
207
|
+
"success": True,
|
|
208
|
+
"chunk_received": True,
|
|
209
|
+
"chunk_number": chunk_number,
|
|
210
|
+
"total_chunks": total_chunks,
|
|
211
|
+
}
|
|
212
|
+
)
|
|
213
|
+
|
|
214
|
+
def _handle_error(self, error_message: str, status_code: int = 500) -> None:
|
|
215
|
+
"""Handle errors and send appropriate error response."""
|
|
216
|
+
log_file_upload_failure(error_message)
|
|
217
|
+
self.set_status(status_code)
|
|
218
|
+
self.write({"error": error_message})
|
|
219
|
+
self.finish()
|
|
220
|
+
|
|
221
|
+
def on_finish(self) -> None:
|
|
222
|
+
"""Clean up any remaining temporary directories when the handler is finished."""
|
|
223
|
+
super().on_finish()
|
|
224
|
+
# Note: We don't clean up here anymore since we want to preserve state across requests
|
|
225
|
+
# The cleanup happens when the file is fully reconstructed
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (c) Saga Inc.
|
|
2
|
+
# Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
3
|
+
|
|
4
|
+
from typing import List, Tuple, Any
|
|
5
|
+
from jupyter_server.utils import url_path_join
|
|
6
|
+
from mito_ai.file_uploads.handlers import FileUploadHandler
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def get_file_uploads_urls(base_url: str) -> List[Tuple[str, Any, dict]]:
|
|
10
|
+
"""Get all file uploads related URL patterns.
|
|
11
|
+
|
|
12
|
+
Args:
|
|
13
|
+
base_url: The base URL for the Jupyter server
|
|
14
|
+
|
|
15
|
+
Returns:
|
|
16
|
+
List of (url_pattern, handler_class, handler_kwargs) tuples
|
|
17
|
+
"""
|
|
18
|
+
BASE_URL = base_url + "/mito-ai"
|
|
19
|
+
return [
|
|
20
|
+
(url_path_join(BASE_URL, "upload"), FileUploadHandler, {}),
|
|
21
|
+
]
|