mito-ai 0.1.28__tar.gz → 0.1.30__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.28 → mito_ai-0.1.30}/PKG-INFO +1 -1
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/_version.py +1 -1
- {mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai → mito_ai-0.1.30/mito_ai/labextension}/build_log.json +1 -1
- {mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai → mito_ai-0.1.30/mito_ai/labextension}/package.json +2 -2
- {mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai → mito_ai-0.1.30/mito_ai/labextension}/schemas/mito_ai/package.json.orig +1 -1
- mito_ai-0.1.28/mito_ai/labextension/static/lib_index_js.114d2b34bc18a45df338.js → mito_ai-0.1.30/mito_ai/labextension/static/lib_index_js.5c78616c48ffde147e05.js +225 -72
- mito_ai-0.1.30/mito_ai/labextension/static/lib_index_js.5c78616c48ffde147e05.js.map +1 -0
- mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.92c6411fdc4075df549b.js → mito_ai-0.1.30/mito_ai/labextension/static/remoteEntry.017b9e90c5534a403f4b.js +3 -3
- mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.92c6411fdc4075df549b.js.map → mito_ai-0.1.30/mito_ai/labextension/static/remoteEntry.017b9e90c5534a403f4b.js.map +1 -1
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/openai_client.py +22 -6
- mito_ai-0.1.30/mito_ai/tests/providers/test_azure.py +635 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/anthropic_utils.py +3 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/open_ai_utils.py +0 -4
- {mito_ai-0.1.28 → mito_ai-0.1.30}/package.json +1 -1
- mito_ai-0.1.30/src/Extensions/AiChat/ChatMessage/AssistantCodeBlock.tsx +94 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/ChatMessage.tsx +23 -13
- mito_ai-0.1.30/src/Extensions/AiChat/ChatMessage/CodeBlockToolbar.tsx +68 -0
- mito_ai-0.1.30/src/Extensions/AiChat/ChatMessage/UserCodeBlock.tsx +52 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatTaskpane.tsx +9 -0
- mito_ai-0.1.30/src/icons/CodeIcon.tsx +18 -0
- mito_ai-0.1.30/src/tests/AiChat/AssistantCodeBlock.test.tsx +143 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/ChatMessage.test.tsx +10 -3
- mito_ai-0.1.30/src/tests/AiChat/CodeBlockToolbar.test.tsx +205 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/NextSteps.test.tsx +1 -7
- mito_ai-0.1.28/src/tests/AiChat/CodeBlock.test.tsx → mito_ai-0.1.30/src/tests/AiChat/UserCodeBlock.test.tsx +61 -46
- mito_ai-0.1.30/src/utils/waitForNotebookReady.ts +57 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/CodeBlock.css +27 -0
- {mito_ai-0.1.28/mito_ai/labextension → mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai}/build_log.json +1 -1
- {mito_ai-0.1.28/mito_ai/labextension → mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai}/package.json +2 -2
- {mito_ai-0.1.28/mito_ai/labextension → mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai}/schemas/mito_ai/package.json.orig +1 -1
- mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.114d2b34bc18a45df338.js → mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.5c78616c48ffde147e05.js +225 -72
- mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.5c78616c48ffde147e05.js.map +1 -0
- mito_ai-0.1.28/mito_ai/labextension/static/remoteEntry.92c6411fdc4075df549b.js → mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.017b9e90c5534a403f4b.js +3 -3
- mito_ai-0.1.28/mito_ai/labextension/static/remoteEntry.92c6411fdc4075df549b.js.map → mito_ai-0.1.30/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.017b9e90c5534a403f4b.js.map +1 -1
- mito_ai-0.1.28/mito_ai/labextension/static/lib_index_js.114d2b34bc18a45df338.js.map +0 -1
- mito_ai-0.1.28/src/Extensions/AiChat/ChatMessage/CodeBlock.tsx +0 -138
- mito_ai-0.1.28/src/utils/waitForNotebookReady.ts +0 -30
- mito_ai-0.1.28/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.114d2b34bc18a45df338.js.map +0 -1
- {mito_ai-0.1.28 → mito_ai-0.1.30}/.babelrc +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/.copier-answers.yml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/.eslintrc.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/.gitignore +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/.prettierignore +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/.yarnrc.yml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/CLAUDE.md +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/LICENSE +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/README.md +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/babel.config.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/declarations.d.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/dev/README.md +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/dev/generate_ai_chats.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/jest.config.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/jupyter-config/jupyter_server_config.d/mito_ai.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/anthropic_client.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/app_builder/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/app_builder/handlers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/app_builder/models.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/agent_auto_error_fixup_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/agent_execution_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/chat_completion_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/code_explain_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/completion_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/inline_completer_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/smart_debug_handler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/completion_handlers/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/handlers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/message_history.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/models.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/agent_execution_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/agent_smart_debug_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/agent_system_message.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/chat_name_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/chat_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/chat_system_message.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/explain_code_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/inline_completer_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/prompt_constants.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/smart_debug_prompt.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/prompt_builders/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/completions/providers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/constants.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/crawlers/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/crawlers/base_crawler.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/crawlers/constants.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/crawlers/snowflake.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/handlers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/models.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/urls.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/db/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/mssql/compose.yml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/mssql/init/setup.sql +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/mysql/compose.yml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/mysql/init/setup.sql +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/oracle/compose.yml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/oracle/init/setup.sql +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/postgres/compose.yml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/docker/postgres/init/setup.sql +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/enterprise/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/enterprise/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/gemini_client.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/schemas/mito_ai/toolbar-buttons.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/style.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/style_index_js.06083e515de4862df010.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/style_index_js.06083e515de4862df010.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/vendors-node_modules_html2canvas_dist_html2canvas_js.ea47e8c8c906197f8d19.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/vendors-node_modules_html2canvas_dist_html2canvas_js.ea47e8c8c906197f8d19.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/labextension/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/log/handlers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/log/urls.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/logger.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/rules/handlers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/rules/urls.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/rules/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/settings/handlers.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/settings/urls.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/settings/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/conftest.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/create_agent_system_message_prompt_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/data/prompt_lg.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/data/prompt_sm.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/data/prompt_xl.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/data/stock_data.sqlite3 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/conftest.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/connections_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/mssql_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/mysql_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/oracle_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/postgres_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/schema_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/sqlite_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/db/test_db_constants.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/message_history/test_generate_short_chat_name.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/message_history/test_message_history_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/open_ai_utils_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/performance_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/providers_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/rules/conftest.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/rules/rules_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/server_limits_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/settings/conftest.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/settings/settings_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/settings/test_settings_constants.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/test_anthropic_client.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/test_constants.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/test_gemini_client.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/utils/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/utils/test_anthropic_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/utils/test_gemini_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/tests/version_check_test.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/__init__.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/create.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/db.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/gemini_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/message_history_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/schema.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/server_limits.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/telemetry_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/version_utils.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/utils/websocket_base.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mito_ai/version_check.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/mypy.ini +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/package-lock.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/pyproject.toml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/requirements.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/schema/toolbar-buttons.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/setup.py +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/AiChatPlugin.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/CTACarousel.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatHistoryManager.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/AlertBlock.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/ChatDropdown.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/ChatInput.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/Citation.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/MarkdownBlock.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/PythonCode.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatMessage/ScrollableSuggestions.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/ChatWidget.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/CodeDiffDisplay.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/FirstMessage.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AiChat/token.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/AppBuilderPlugin.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/DeployAppNotification.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/NotebookToStreamlit.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/cellConversionUtils.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/fileUtils.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/requirementsUtils.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/visualizationConversionUtils.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/AppBuilder/visualization_test_notebook.ipynb +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ContextManager/ContextManagerPlugin.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ContextManager/FileInspector.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ContextManager/VariableInspector.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ErrorMimeRenderer/CollapsibleWarningBlock.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ErrorMimeRenderer/ErrorMimeRendererPlugin.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ErrorMimeRenderer/errorUtils.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/InlineCompleter/index.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/InlineCompleter/provider.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/NotebookFooter/NotebookFooter.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/NotebookFooter/index.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/SettingsManagerPlugin.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/SettingsWidget.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/database/ConnectionForm.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/database/ConnectionList.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/database/DatabasePage.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/database/model.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/general/GeneralPage.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/rules/RulesForm.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/rules/RulesPage.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/rules/models.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/SettingsManager/support/SupportPage.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/ToolbarButtons/ToolbarButtonsPlugin.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/VersionCheck/index.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/emptyCell/EmptyCellPlugin.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/emptyCell/emptyCell.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/Extensions/status/index.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/commands.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/AgentToolComponents/GetCellOutputToolUI.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/DropdownMenu.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/IconButton.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/LoadingCircle.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/LoadingDots.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/ModelSelector.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/NextStepsPills.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/SelectedContextContainer.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/TextAndIconButton.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/TextButton.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/components/ToggleButton.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/hooks/useDebouncedEffect.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/hooks/useDebouncedFunction.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/AcceptIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/AiIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/AppBuilderExcludeCellIcon.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/AppBuilderIncludeCellIcon.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/ChatIcon.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/ChatIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/Check.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/CopyIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/ErrorIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/ExpandIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/GarbageIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/LightbulbIcon.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/MagicWand.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/MagnifyingGlassIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/MitoLogo.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/NotebookFooter/CodeIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/NotebookFooter/TextIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/NucleausIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/NucleusIcon.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/OpenIndicatorIcon.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/Pencil.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/PlayButtonIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/RejectIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/RobotHeadIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/RuleIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/SupportIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/UndoIcon.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/XMark.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/icons/index.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/index.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/restAPI/RestAPI.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/restAPI/utils.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/CTACarousel.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/ChatDropdown.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/ChatInput.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/ModelSelector.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AiChat/RestoreCheckpoint.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AppBuilder/NotebookToStreamlit.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AppBuilder/transformInvalidLines.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AppBuilder/transformMitoAppInput.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/AppBuilder/transformVisualizationCell.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/ContextManager/ContextManagerPlugin.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/NotebookFooter/notebookFooter.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/SettingsManager/ConnectionList.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/__mocks__/fileMock.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/__mocks__/jupyterMocks.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/__mocks__/openaiMocks.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/__mocks__/styleMock.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/setup/setupTests.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/tests/utils/blacklistedWords.test.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/agentActions.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/arrays.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/blacklistedWords.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/checkpoint.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/classNames.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/codeDiff.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/copyToClipboard.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/errors.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/fileName.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/nodeToPng.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/notebook.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/scroll.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/scrollMask.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/sleep.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/strings.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/stripe.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/user.tsx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/utils/version_check.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/websockets/BaseWebsocketClient.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/websockets/appBuilder/appBuilderModels.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/websockets/appBuilder/appBuilderWebsocketClient.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/websockets/completions/CompletionModels.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/src/websockets/completions/CompletionsWebsocketClient.ts +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/CTACarousel.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ChatDropdown.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ChatInput.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ChatMessage.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ChatTaskpane.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/Citation.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ConnectionForm.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/DatabasePage.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/DropdownMenu.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ErrorMimeRendererPlugin.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/GetCellOutputToolUI.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/IconButton.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/MarkdownMessage.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ModelSelector.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/NextStepsPills.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/NotebookFooter.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/PythonCode.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/RulesForm.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/SelectedContextContainer.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/SettingsWidget.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/TextAndIconButton.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/TextButton.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/ToggleButton.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/base.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/button.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/icons.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/index.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/index.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/style/statusItem.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/tsconfig.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/tsconfig.test.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/Activate.ps1 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/activate +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/activate.csh +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/activate.fish +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/debugpy +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/debugpy-adapter +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/distro +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/docutils +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/hatch-jupyter-builder +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/hatchling +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/httpx +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/ipython +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/ipython3 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jlpm +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jsonpointer +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jsonschema +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-dejavu +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-events +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-execute +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-kernel +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-kernelspec +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-lab +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-labextension +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-labhub +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-migrate +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-nbconvert +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-run +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-server +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-troubleshoot +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/jupyter-trust +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/keyring +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/markdown-it +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/normalizer +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/openai +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pip +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pip3 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pip3.11 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pipreqs +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pybabel +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pygmentize +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyjson5 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyrsa-decrypt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyrsa-encrypt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyrsa-keygen +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyrsa-priv2pub +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyrsa-sign +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/pyrsa-verify +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/python +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/python3 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/python3.11 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2html +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2html4 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2html5 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2latex +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2man +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2odt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2pseudoxml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2s5 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2xetex +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/rst2xml +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/send2trash +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/tqdm +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/trove-classifiers +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/twine +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/websockets +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/bin/wsdump +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/jupyter_server_config.d/jupyter-lsp-jupyter-server.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/jupyter_server_config.d/jupyterlab.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/jupyter_server_config.d/mito_ai.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/jupyter_server_config.d/notebook_shim.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/etc/jupyter/labconfig/page_config.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/include/site/python3.11/greenlet/greenlet.h +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/pyvenv.cfg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/applications/jupyterlab.desktop +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/icons/hicolor/scalable/apps/jupyterlab.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/kernels/python3/kernel.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/kernels/python3/logo-32x32.png +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/kernels/python3/logo-64x64.png +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/kernels/python3/logo-svg.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/commands.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/context-menu.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/property-inspector.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/shell.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/top-bar.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/kernels-settings.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/notification.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/palette.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/print.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sanitizer.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sessionDialogs.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/themes.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/utilityCommands.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/inline-completer.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/manager.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/completer.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/foreign.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/tracker.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/csv.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/tsv.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/main.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/download.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/browser.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/download.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/open-browser-tab.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/open-with.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/widget.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/completer.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/about.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/jupyter-forum.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/launch-classic.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/menu.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/consoles.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/inspector.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/notebooks.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/metadataforms.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/completer.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/export.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/panel.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/tools.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/tracker.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/form-ui.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/shortcuts.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/registry.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/consoles.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/files.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/notebooks.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/plugin.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/indicator.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/menu.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/package.json.orig +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/sidebar.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/100.1d14ca44a3cc8849349f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1039.3fe94e87219c0ed159d3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1096.dd4c563e0483cbbeb9c9.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1189.c1482e88f0e949753db6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1208.4b9ab7b231d39ebdbc3f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1219.b5630aa3a46050fddc27.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1268.e75d8a6dd557ac8957ca.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1359.d5f23f0e2a6f67b69751.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1423.4bcf4453e1c1d12d872f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1436.2c11d9dee0ad6f49e968.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1445.a0e099c27d073217031a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1449.7026e8748d2a77e15d5b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1462.57e39f487257f25263d4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1491.010c623dd546db976e95.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1673.b0ee25168543434bdbca.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1737.a5fc97075f693ec36fe6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1832.b1ede2fe899bdec88938.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1834.7445ad0c82371ac40737.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1838.839690ff17ec3c532f0a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1887.56f83f163a18c61efb16.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1912.f16dddc294d66c3c81e9.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1954.f1c519cb1415c7da3e8c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1960.f8d8ef8a91360e60f0b9.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1962.6a7da74e809b70d5200d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1969.86e3168e52802569d650.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1986.26029e99ef54a5652df8.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1991.84fc123d7cfe8ae2948e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/1cb1c39ea642f26a4dfe.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2023.59b30086fbeff6d17e3b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2211.3123543dcc217549bbb0.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/227.6bd3154334bb91c5ca1c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/227.6bd3154334bb91c5ca1c.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2280.6614699f54522fffbc00.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/232.5419cbec68e3fd0cf431.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/232.5419cbec68e3fd0cf431.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2353.ab70488f07a7c0a7a3fd.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/246.326a6482593e8a7bcd58.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2467.4227742ac4b60289f222.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/247.84259ab142dd8c151fc2.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2550.75fcaa650ffac405c0dc.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2574.327dadfe49120269ff31.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2576.b98b7b23adeec4cb6932.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2590.99e505d19b964439aa31.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2633.ea053b40991eb5adbc69.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2641.e77441e7a3e0d12834c5.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/265.6f9e37c0b72db64203b1.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2658.d1cae1b08b068d864368.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/26683bf201fb258a2237.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2681.a47f40e38ecd31ccd687.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2707.61050e600b0aa9624127.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2729.cafaf0caf2c0c83ac9fe.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2794.05495c139ed000b57598.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2823.0b6015b5e03c08281f41.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2880.8483d51b11998bfe8e4b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2957.bc5eb9549a0b15c44916.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/2959.b24c9f67d639376f5ead.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3048.59e6166a886a78f4f698.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/30e889b58cbc51adfbb0.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3111.33574d9124842f355bce.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3112.0757b31e24c5334fda73.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3122.fed5688acdcf6ff6aa6b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/321.0fb994fd384a54491584.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3257.30af681f0c294efb65f7.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3257.30af681f0c294efb65f7.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/32792104b5ef69eded90.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3282.22e78350d54fcaf3c6c8.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3293.375c6685d72662fc062f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3303.b5596c0715d2d58332fb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3358.7ba73a6804155b619b44.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3372.8eeafd96de9a7a205f40.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/339.380593b40d8d41150a4e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/355254db9ca10a09a3b5.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3616.a4271ffcf2ac3b4c2338.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/36e0d72d8a7afc696a3e.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3709.e33bc30c83272aa85628.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/373c04fd2418f5c77eea.eot +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3763.56191df5d72d2ffa5aa6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3780.c9294dc98ae926717741.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3799.eaa0438bc5c41bad0516.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3824.5f2d72e7866264f44c07.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3832.c6026c483bb46cc8e599.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3974.79f68bca9a02c92dab5e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3991.678edf189fe92a216c70.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3bc6ecaae7ecf6f8d7f8.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3de784d07b9fa8f104c1.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/3f6d3488cf65374f6f67.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4001.80ab3ef5300d7ce2d1fe.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4010.5271baedaaff5113c699.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4053.4945facc348478fd59f4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4068.9cc41f46f729f2c4369b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4076.b4d803d8bf1bd6c97854.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4090.c1367cf63af4f0088045.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4266.155b468271987c81d948.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4296.721da424585874d0789e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4311.b44e8bc4829e0b1226d2.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4323.b2bd8a329a81d30ed039.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4350.8c8a0e7a3ffe036494e1.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4353.8572f6845cfde92dc152.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4364.b9b49d8d836882f44e62.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4372.645626a2452c190dbb22.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4372.645626a2452c190dbb22.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4408.f24dd0edf35e08548967.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4462.c3c6de84bc9399e0290d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4484.e1d2565d1a3daa5fe5f1.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4486.8d2f41ae787607b7bf31.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4528.43328125d98d6cfdfa99.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4611.bd2b768223b0cd570834.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4616.04cfbd55593c51921cc7.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4728.f59e4bd4b29409da82bc.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4728.f59e4bd4b29409da82bc.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4735.7731d551ca68bcb58e9f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4797.3740ef47b224a11a7fab.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/481e39042508ae313a60.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4838.8db4c61349bfba200547.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4855.29e8dc6982ba4873487d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4878.f7557c5c99a54b40c49b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/492.5f186062d2dcdf79c86c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4928.6cb408e4def87534970d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4958.0a9dba3bf643df0b91de.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4981.eed4ddb90566e90e3df4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/4982.c609185756485c6e3344.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5085.a38923f36b551620798a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5135.7f204de2153e4d85406d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5211.83e78dadcef89cae04bf.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5224.8a6bbc774d20be66fdfb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5244.eefac84704ad30f00af3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5317.f4bba2e3d0f4fdd088f7.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5318.d5df5c275e925c22d780.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5338.38c32bdfb0695f9b501f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5489.7fab44eac7538297b164.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5492.44728a640c37a4b4aa0c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5521.0337f193af4e5eee6057.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5566.c76ea61eb723ee84e2cf.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5606.e03dfa10c124a03f36ba.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/580.4ea1e6182e0b35ff091a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5829.0e46d479b4ade4783661.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5847.930208c25e45ecf30657.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5862.be1ec453e8db6844c62d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5877.72ab5a29e95ce21981e4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5929.d561797f8259994ecdd8.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5942.05cbcd55c5f45ff7db43.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5987.7e967df5417044d337a4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/5cda41563a095bd70c78.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6003.94cdab770c801f3c46f7.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6060.52dca011e9f2f279fc5e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6095.6e79e3bad86e054aa8c8.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6145.c422868290460078c013.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6166.2bc9ac8e2156c0701a52.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6170.65d899f43342f1e34bf1.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6180.1a4acf96a100bec7a003.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6214.617de47747c5a9b19ef7.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6275.e99f9312900c481b467d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6294.b3cb5e16527b9d09b4a2.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6364.c592f3101de349ba3904.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6372.edc0712a4be855493530.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6412.ebdf8da40f1ba8272df9.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6439.1723c0b3882bf535486e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6460.d9aaa1e48da295c6035d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/649.4081045b1737e4213282.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6492.804d51a693edf6978ef4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6540.51c00e890179a4832552.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6540.51c00e890179a4832552.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6733.2d8d3e01d56d79a52e7e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6733.2d8d3e01d56d79a52e7e.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6767.4b82d96c237ca7e31bc6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6779.051cfbcb0700a96839b2.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6831.1df8fa4cabb5b1c19803.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6843.dabcc3c9658bc6ded6d1.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6874.bb2f7fbc6ce56eecc800.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6896.af1d649e0efae70b7b1a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6941.465bebbd3d8a024f5f15.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6974.b5b353b8af28fbc91291.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6986.c4dab251590b27fdd9ad.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/6993.c93f5a810fcf441cbb6f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7136.b312751fbb25b73f5e71.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/721921bab0d001ebff02.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7250.b88d0a5e237ff5ff1aad.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7260.b47dcaccbe7991104e8a.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7269.962f078e97afc4f68e79.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/72bc573386dd1d48c5bb.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/731.82a7b980b5b7f4b7a14f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7318.7cc6b4b0b3151b205ecb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7371.63b12ce793df713ab95b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7425.f1c25f6c8aaec77e8635.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7445.7c793c8e1720f8ec4f85.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7575.2e3e32236d5667bba43f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7587.3112240b6b82407b0f16.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7694.1cbff84dccb512476b7c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7741.2ad1372a5862c4522be3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7756.93d0ab41829355a147ab.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7769.d39df7673ee2660a9ac4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7799.97fcec85f6547cd50a54.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7803.0c8929610218552319bf.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7856.dd9523e57bed80f1f694.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7879.5c485d200dc01b6f43ff.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7881.c5a234ce171f347c94e2.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7990.0d774450b53727ab32d5.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/7990.0d774450b53727ab32d5.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/79d088064beb3826054f.eot +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8038.aea19fb961abd87d6255.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/805.2a0b8ac50aa8e6ab096f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8103.ed2b21471519b58a3d73.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8232.e31d5021e77a9b5215d6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8313.aac706f5036a7209b3a8.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8326.9dda93079a9e4f1b9be6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8354.94077232b086a13541cc.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8368.c75a4b32ae45ec88465d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8391.e5fb2e35cced405eb819.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/84.fe0a55d7756c37585fb4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8418.42e29778d4b49fb54e8e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8493.3b6106e45d5661438d8e.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8537.21b8b9ae0d81ae264499.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8606.bc1b0136e61d173913cd.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/867.e814bf26fbfc77fc4f16.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/870673df72e70f87c91a.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/874.fbd3ae653c7337f3425b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8753.56da17175b663d61f9d3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8778.a3883f9acac5a903d6be.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8779.6eebdb56785e3d38a457.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8786.a2bc3dfc1ea13c04ba94.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8786.a2bc3dfc1ea13c04ba94.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8816.d7ec52fb31e9c6749593.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8830.d5bb102ed8737ffe38cb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8855.b17b9969fce42d0398e4.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/88b98cad3688915e50da.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/89.933673451ca4a51053cb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8915.ab253990b1581460b255.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/898.ed04189e15f0a3781fb1.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8ea8791754915a898a31.woff2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/8ea8dbb1b02e6f730f55.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9023.2ff687d7ff50df3719fc.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9046.99c477ea375dcbb8c7ca.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9085.93df3ddfd17e1e45d82c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9085.93df3ddfd17e1e45d82c.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9123.501219cd782693d6539f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9136.8f4cc6ecadcf250fd8ac.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9137.179a3c47465e7fb8f067.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9296.1c75c887f933757c6bfb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9311.ad0012965aa52db7a3e3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9329.1683d45b6478b7c81a24.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9359.34d1b961b733676193cb.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9400.90fd1d2212781c80b587.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9474.01b4e1d1e3376f4a5919.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9517.7056cafdf1da3a136d45.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9572.f91bbaa33e932d524f8f.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/961.29c067b15a524e556eed.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/961.29c067b15a524e556eed.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9652.a8d2e5854bcae4d40041.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9674eb1bd55047179038.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9744.c7c91fdb0180dcf5cd9b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9746.c7e86b432363dfd28caa.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9834b82ad26e2a37583d.woff2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9881.37d189ff085cb3468683.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9890.75ea8024e2c1c49c89a3.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9892.6d289e7baed8c64d88e2.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/9892.6d289e7baed8c64d88e2.js.LICENSE.txt +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/a009bea404f7a500ded4.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/a3b9817780214caf01e8.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/af04542b29eaac04550a.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/af6397503fcefbd61397.ttf +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/af96f67d7accf5fd2a4a.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/b418136e3b384baaadec.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/be0a084962d8066884f7.svg +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/bootstrap.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/build_log.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/c49810b53ecc0d87d802.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/c56da8d69f1a0208b8e0.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/cb9e9e693192413cde2b.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/cda59d6efffa685830fd.ttf +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/e4299464e7b012968eed.eot +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/e42a88444448ac3d6054.woff2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/e8711bbb871afd8e9dea.ttf +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/f9217f66874b0c01cd8c.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/fc6ddf5df402b263cfb1.woff +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/index.html +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/index.out.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/jlab_core.7930f75c363206fef83d.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/main.e0ad11baf75be894f6f6.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/package.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/style.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/static/third-party-licenses.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/install.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/package.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/747.67662283a5707eeb4d4c.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/remoteEntry.5cbb9d2323598fbda535.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/style.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/third-party-licenses.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/schemas/mito_ai/toolbar-buttons.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/style.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.06083e515de4862df010.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.06083e515de4862df010.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_html2canvas_dist_html2canvas_js.ea47e8c8c906197f8d19.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_html2canvas_dist_html2canvas_js.ea47e8c8c906197f8d19.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js.map +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/asciidoc/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/base/cell_id_anchor.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/base/celltags.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/base/display_priority.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/base/mathjax.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/base/null.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/basic/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/basic/index.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/classic/base.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/classic/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/classic/index.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/classic/static/style.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/compatibility/display_priority.tpl +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/compatibility/full.tpl +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/base.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/index.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/mermaidjs.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/static/index.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/static/theme-dark.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/lab/static/theme-light.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/base.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/display_priority.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/index.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/null.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/report.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/latex/style_python.tex.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/markdown/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/markdown/index.md.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/python/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/python/index.py.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/reveal/base.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/reveal/cellslidedata.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/reveal/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/reveal/index.html.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/rst/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/rst/index.rst.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/script/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/script/script.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/webpdf/conf.json +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/jupyter/nbconvert/templates/webpdf/index.pdf.j2 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/venv/share/man/man1/ipython.1 +0 -0
- {mito_ai-0.1.28 → mito_ai-0.1.30}/yarn.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mito_ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "AI chat for JupyterLab",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"outputDir": "mito_ai/labextension",
|
|
139
139
|
"schemaDir": "schema",
|
|
140
140
|
"_build": {
|
|
141
|
-
"load": "static/remoteEntry.
|
|
141
|
+
"load": "static/remoteEntry.017b9e90c5534a403f4b.js",
|
|
142
142
|
"extension": "./extension",
|
|
143
143
|
"style": "./style"
|
|
144
144
|
}
|
|
@@ -510,6 +510,67 @@ const AlertBlock = ({ content, mitoAIConnectionErrorType }) => {
|
|
|
510
510
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AlertBlock);
|
|
511
511
|
|
|
512
512
|
|
|
513
|
+
/***/ }),
|
|
514
|
+
|
|
515
|
+
/***/ "./lib/Extensions/AiChat/ChatMessage/AssistantCodeBlock.js":
|
|
516
|
+
/*!*****************************************************************!*\
|
|
517
|
+
!*** ./lib/Extensions/AiChat/ChatMessage/AssistantCodeBlock.js ***!
|
|
518
|
+
\*****************************************************************/
|
|
519
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
520
|
+
|
|
521
|
+
__webpack_require__.r(__webpack_exports__);
|
|
522
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
523
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
524
|
+
/* harmony export */ });
|
|
525
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "webpack/sharing/consume/default/react");
|
|
526
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
527
|
+
/* harmony import */ var _PythonCode__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./PythonCode */ "./lib/Extensions/AiChat/ChatMessage/PythonCode.js");
|
|
528
|
+
/* harmony import */ var _utils_classNames__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../utils/classNames */ "./lib/utils/classNames.js");
|
|
529
|
+
/* harmony import */ var _style_CodeBlock_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../style/CodeBlock.css */ "./style/CodeBlock.css");
|
|
530
|
+
/* harmony import */ var _icons_ExpandIcon__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../icons/ExpandIcon */ "./lib/icons/ExpandIcon.js");
|
|
531
|
+
/* harmony import */ var _icons_CodeIcon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../icons/CodeIcon */ "./lib/icons/CodeIcon.js");
|
|
532
|
+
/* harmony import */ var _CodeBlockToolbar__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./CodeBlockToolbar */ "./lib/Extensions/AiChat/ChatMessage/CodeBlockToolbar.js");
|
|
533
|
+
/*
|
|
534
|
+
* Copyright (c) Saga Inc.
|
|
535
|
+
* Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
536
|
+
*/
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
const AssistantCodeBlock = ({ code, isCodeComplete, renderMimeRegistry, previewAICode, acceptAICode, rejectAICode, isLastAiMessage, codeReviewStatus, agentModeEnabled }) => {
|
|
545
|
+
const [isCodeExpanded, setIsCodeExpanded] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(false);
|
|
546
|
+
// Memoize calculations
|
|
547
|
+
const lineCount = (0,react__WEBPACK_IMPORTED_MODULE_0__.useMemo)(() => code.split('\n').length - 2, [code]);
|
|
548
|
+
const shouldShowToolbar = isLastAiMessage || isCodeComplete;
|
|
549
|
+
if (agentModeEnabled) {
|
|
550
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: (0,_utils_classNames__WEBPACK_IMPORTED_MODULE_2__.classNames)('code-block-container', {
|
|
551
|
+
'agent-mode': true,
|
|
552
|
+
'agent-mode-collapsed': !isCodeExpanded
|
|
553
|
+
}) },
|
|
554
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { onClick: () => setIsCodeExpanded(!isCodeExpanded), className: (0,_utils_classNames__WEBPACK_IMPORTED_MODULE_2__.classNames)('agent-mode-toggle', {
|
|
555
|
+
expanded: isCodeExpanded
|
|
556
|
+
}) },
|
|
557
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("span", { className: "agent-mode-toggle-content" },
|
|
558
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_CodeIcon__WEBPACK_IMPORTED_MODULE_3__["default"], null),
|
|
559
|
+
"Generated ",
|
|
560
|
+
lineCount,
|
|
561
|
+
" lines of code"),
|
|
562
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_ExpandIcon__WEBPACK_IMPORTED_MODULE_4__["default"], { isExpanded: isCodeExpanded })),
|
|
563
|
+
isCodeExpanded && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_PythonCode__WEBPACK_IMPORTED_MODULE_5__["default"], { code: code, renderMimeRegistry: renderMimeRegistry }))));
|
|
564
|
+
}
|
|
565
|
+
else {
|
|
566
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: "code-block-container" },
|
|
567
|
+
shouldShowToolbar && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_CodeBlockToolbar__WEBPACK_IMPORTED_MODULE_6__["default"], { code: code, isLastAiMessage: isLastAiMessage, codeReviewStatus: codeReviewStatus, onPreview: previewAICode, onAccept: acceptAICode, onReject: rejectAICode })),
|
|
568
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_PythonCode__WEBPACK_IMPORTED_MODULE_5__["default"], { code: code, renderMimeRegistry: renderMimeRegistry })));
|
|
569
|
+
}
|
|
570
|
+
};
|
|
571
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AssistantCodeBlock);
|
|
572
|
+
|
|
573
|
+
|
|
513
574
|
/***/ }),
|
|
514
575
|
|
|
515
576
|
/***/ "./lib/Extensions/AiChat/ChatMessage/ChatDropdown.js":
|
|
@@ -874,20 +935,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
874
935
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "webpack/sharing/consume/default/react");
|
|
875
936
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
876
937
|
/* harmony import */ var _utils_classNames__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../utils/classNames */ "./lib/utils/classNames.js");
|
|
877
|
-
/* harmony import */ var
|
|
938
|
+
/* harmony import */ var _UserCodeBlock__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./UserCodeBlock */ "./lib/Extensions/AiChat/ChatMessage/UserCodeBlock.js");
|
|
939
|
+
/* harmony import */ var _AssistantCodeBlock__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./AssistantCodeBlock */ "./lib/Extensions/AiChat/ChatMessage/AssistantCodeBlock.js");
|
|
878
940
|
/* harmony import */ var _AlertBlock__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./AlertBlock */ "./lib/Extensions/AiChat/ChatMessage/AlertBlock.js");
|
|
879
|
-
/* harmony import */ var
|
|
941
|
+
/* harmony import */ var _MarkdownBlock__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./MarkdownBlock */ "./lib/Extensions/AiChat/ChatMessage/MarkdownBlock.js");
|
|
880
942
|
/* harmony import */ var _utils_strings__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../utils/strings */ "./lib/utils/strings.js");
|
|
881
|
-
/* harmony import */ var
|
|
943
|
+
/* harmony import */ var _icons_Pencil__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../../../icons/Pencil */ "./lib/icons/Pencil.js");
|
|
882
944
|
/* harmony import */ var _ChatInput__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ChatInput */ "./lib/Extensions/AiChat/ChatMessage/ChatInput.js");
|
|
883
|
-
/* harmony import */ var
|
|
884
|
-
/* harmony import */ var
|
|
885
|
-
/* harmony import */ var
|
|
886
|
-
/* harmony import */ var
|
|
887
|
-
/* harmony import */ var
|
|
945
|
+
/* harmony import */ var _components_TextAndIconButton__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../components/TextAndIconButton */ "./lib/components/TextAndIconButton.js");
|
|
946
|
+
/* harmony import */ var _icons_PlayButtonIcon__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../icons/PlayButtonIcon */ "./lib/icons/PlayButtonIcon.js");
|
|
947
|
+
/* harmony import */ var _icons_CopyIcon__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../../../icons/CopyIcon */ "./lib/icons/CopyIcon.js");
|
|
948
|
+
/* harmony import */ var _utils_copyToClipboard__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../../utils/copyToClipboard */ "./lib/utils/copyToClipboard.js");
|
|
949
|
+
/* harmony import */ var _components_TextButton__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../../../components/TextButton */ "./lib/components/TextButton.js");
|
|
888
950
|
/* harmony import */ var _style_ChatMessage_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../style/ChatMessage.css */ "./style/ChatMessage.css");
|
|
889
951
|
/* harmony import */ var _style_MarkdownMessage_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../style/MarkdownMessage.css */ "./style/MarkdownMessage.css");
|
|
890
|
-
/* harmony import */ var
|
|
952
|
+
/* harmony import */ var _components_AgentToolComponents_GetCellOutputToolUI__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../../../components/AgentToolComponents/GetCellOutputToolUI */ "./lib/components/AgentToolComponents/GetCellOutputToolUI.js");
|
|
891
953
|
/*
|
|
892
954
|
* Copyright (c) Saga Inc.
|
|
893
955
|
* Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
@@ -908,7 +970,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
908
970
|
|
|
909
971
|
|
|
910
972
|
|
|
911
|
-
|
|
973
|
+
|
|
974
|
+
const ChatMessage = ({ message, messageType, promptType, agentResponse, messageIndex, mitoAIConnectionError, mitoAIConnectionErrorType, notebookTracker, renderMimeRegistry, isLastAiMessage, isLastMessage, operatingSystem, previewAICode, acceptAICode, rejectAICode, onUpdateMessage, contextManager, codeReviewStatus, setNextSteps, agentModeEnabled, }) => {
|
|
912
975
|
const [isEditing, setIsEditing] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(false);
|
|
913
976
|
if (message.role !== 'user' && message.role !== 'assistant') {
|
|
914
977
|
return null;
|
|
@@ -958,15 +1021,15 @@ const ChatMessage = ({ message, messageType, promptType, agentResponse, messageI
|
|
|
958
1021
|
// An empty code will look like this '```python ```'
|
|
959
1022
|
if (messagePart.length > 14) {
|
|
960
1023
|
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null,
|
|
961
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
1024
|
+
message.role === 'user' ? (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_UserCodeBlock__WEBPACK_IMPORTED_MODULE_7__["default"], { code: messagePart, renderMimeRegistry: renderMimeRegistry, agentModeEnabled: agentModeEnabled })) : (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_AssistantCodeBlock__WEBPACK_IMPORTED_MODULE_8__["default"], { code: messagePart, isCodeComplete: isCodeComplete, renderMimeRegistry: renderMimeRegistry, previewAICode: previewAICode, acceptAICode: acceptAICode, rejectAICode: rejectAICode, isLastAiMessage: isLastAiMessage, codeReviewStatus: codeReviewStatus, agentModeEnabled: agentModeEnabled })),
|
|
962
1025
|
isLastAiMessage && isCodeComplete && codeReviewStatus === 'chatPreview' &&
|
|
963
1026
|
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'chat-message-buttons' },
|
|
964
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
965
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
1027
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_TextAndIconButton__WEBPACK_IMPORTED_MODULE_9__["default"], { onClick: () => { previewAICode(); }, text: 'Overwrite Active Cell', icon: _icons_PlayButtonIcon__WEBPACK_IMPORTED_MODULE_10__["default"], title: 'Write the Ai generated code to the active cell in the jupyter notebook, replacing the current code.', variant: 'gray', width: 'fit-contents' }),
|
|
1028
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_TextAndIconButton__WEBPACK_IMPORTED_MODULE_9__["default"], { onClick: () => { void (0,_utils_copyToClipboard__WEBPACK_IMPORTED_MODULE_11__["default"])(messagePart); }, text: 'Copy', icon: _icons_CopyIcon__WEBPACK_IMPORTED_MODULE_12__["default"], title: 'Copy the Ai generated code to your clipboard', variant: 'gray', width: 'fit-contents' })),
|
|
966
1029
|
isLastAiMessage && isCodeComplete && codeReviewStatus === 'codeCellPreview' &&
|
|
967
1030
|
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'chat-message-buttons' },
|
|
968
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
969
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
1031
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_TextButton__WEBPACK_IMPORTED_MODULE_13__["default"], { onClick: () => { acceptAICode(); }, text: `Accept code ${operatingSystem === 'mac' ? '⌘Y' : 'Ctrl+Y'}`, title: 'Accept the Ai generated code', variant: 'green', width: 'fit-contents' }),
|
|
1032
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_TextButton__WEBPACK_IMPORTED_MODULE_13__["default"], { onClick: () => { rejectAICode(); }, text: `Reject code ${operatingSystem === 'mac' ? '⌘U' : 'Ctrl+U'}`, title: 'Reject the Ai generated code and revert to the previous version of the code cell', variant: 'red', width: 'fit-contents' }))));
|
|
970
1033
|
}
|
|
971
1034
|
else {
|
|
972
1035
|
// Return null for empty code blocks
|
|
@@ -982,15 +1045,15 @@ const ChatMessage = ({ message, messageType, promptType, agentResponse, messageI
|
|
|
982
1045
|
}
|
|
983
1046
|
} }, message.role === 'user' && promptType === 'smartDebug' ? (
|
|
984
1047
|
/* Use a pre tag to preserve the newline and indentation of the error message */
|
|
985
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("pre", { className: "chat-taskpane-smart-debug-error-message" }, messagePart)) : (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
1048
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("pre", { className: "chat-taskpane-smart-debug-error-message" }, messagePart)) : (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_MarkdownBlock__WEBPACK_IMPORTED_MODULE_14__["default"], { markdown: messagePart, renderMimeRegistry: renderMimeRegistry, notebookTracker: notebookTracker })))));
|
|
986
1049
|
}
|
|
987
1050
|
}),
|
|
988
1051
|
editable &&
|
|
989
1052
|
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: "message-action-buttons" },
|
|
990
1053
|
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("button", { className: "message-start-editing-button", onClick: handleEditClick, title: "Edit message" },
|
|
991
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
1054
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_Pencil__WEBPACK_IMPORTED_MODULE_15__["default"], null))),
|
|
992
1055
|
(agentResponse === null || agentResponse === void 0 ? void 0 : agentResponse.type) === 'get_cell_output' &&
|
|
993
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(
|
|
1056
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_AgentToolComponents_GetCellOutputToolUI__WEBPACK_IMPORTED_MODULE_16__["default"], null)));
|
|
994
1057
|
};
|
|
995
1058
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ChatMessage);
|
|
996
1059
|
|
|
@@ -1045,10 +1108,10 @@ const Citation = ({ citationIndex, cellId, line, notebookTracker }) => {
|
|
|
1045
1108
|
|
|
1046
1109
|
/***/ }),
|
|
1047
1110
|
|
|
1048
|
-
/***/ "./lib/Extensions/AiChat/ChatMessage/
|
|
1049
|
-
|
|
1050
|
-
!*** ./lib/Extensions/AiChat/ChatMessage/
|
|
1051
|
-
|
|
1111
|
+
/***/ "./lib/Extensions/AiChat/ChatMessage/CodeBlockToolbar.js":
|
|
1112
|
+
/*!***************************************************************!*\
|
|
1113
|
+
!*** ./lib/Extensions/AiChat/ChatMessage/CodeBlockToolbar.js ***!
|
|
1114
|
+
\***************************************************************/
|
|
1052
1115
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1053
1116
|
|
|
1054
1117
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -1057,15 +1120,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1057
1120
|
/* harmony export */ });
|
|
1058
1121
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "webpack/sharing/consume/default/react");
|
|
1059
1122
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1060
|
-
/* harmony import */ var
|
|
1061
|
-
/* harmony import */ var
|
|
1062
|
-
/* harmony import */ var
|
|
1063
|
-
/* harmony import */ var
|
|
1064
|
-
/* harmony import */ var
|
|
1065
|
-
/* harmony import */ var
|
|
1066
|
-
/* harmony import */ var _icons_AcceptIcon__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../icons/AcceptIcon */ "./lib/icons/AcceptIcon.js");
|
|
1067
|
-
/* harmony import */ var _icons_RejectIcon__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../icons/RejectIcon */ "./lib/icons/RejectIcon.js");
|
|
1068
|
-
/* harmony import */ var _icons_ExpandIcon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../icons/ExpandIcon */ "./lib/icons/ExpandIcon.js");
|
|
1123
|
+
/* harmony import */ var _utils_copyToClipboard__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../utils/copyToClipboard */ "./lib/utils/copyToClipboard.js");
|
|
1124
|
+
/* harmony import */ var _components_IconButton__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../components/IconButton */ "./lib/components/IconButton.js");
|
|
1125
|
+
/* harmony import */ var _icons_CopyIcon__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../icons/CopyIcon */ "./lib/icons/CopyIcon.js");
|
|
1126
|
+
/* harmony import */ var _icons_PlayButtonIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../icons/PlayButtonIcon */ "./lib/icons/PlayButtonIcon.js");
|
|
1127
|
+
/* harmony import */ var _icons_AcceptIcon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../icons/AcceptIcon */ "./lib/icons/AcceptIcon.js");
|
|
1128
|
+
/* harmony import */ var _icons_RejectIcon__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../icons/RejectIcon */ "./lib/icons/RejectIcon.js");
|
|
1069
1129
|
/*
|
|
1070
1130
|
* Copyright (c) Saga Inc.
|
|
1071
1131
|
* Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
@@ -1077,44 +1137,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1077
1137
|
|
|
1078
1138
|
|
|
1079
1139
|
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
const isCodeExpandable = code.split('\n').length > numCodePreviewLines;
|
|
1088
|
-
const previewCode = code.split('\n').slice(0, numCodePreviewLines).join('\n');
|
|
1089
|
-
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-container active-cell-code-block', onClick: () => setIsExpanded(!isExpanded), style: { cursor: 'pointer' } },
|
|
1090
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_PythonCode__WEBPACK_IMPORTED_MODULE_2__["default"], { code: isExpanded ? code : previewCode, renderMimeRegistry: renderMimeRegistry }),
|
|
1091
|
-
isCodeExpandable && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-expand-button', title: isExpanded ? "Collapse" : "Expand", onClick: (e) => {
|
|
1092
|
-
e.stopPropagation();
|
|
1093
|
-
setIsExpanded(!isExpanded);
|
|
1094
|
-
} },
|
|
1095
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_ExpandIcon__WEBPACK_IMPORTED_MODULE_3__["default"], { isExpanded: isExpanded })))));
|
|
1096
|
-
}
|
|
1097
|
-
if (role === 'assistant') {
|
|
1098
|
-
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-container' },
|
|
1099
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null,
|
|
1100
|
-
isLastAiMessage && isCodeComplete &&
|
|
1101
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-toolbar' },
|
|
1102
|
-
codeReviewStatus === 'chatPreview' &&
|
|
1103
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_4__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_PlayButtonIcon__WEBPACK_IMPORTED_MODULE_5__["default"], null), title: "Overwrite Active Cell", onClick: () => { previewAICode(); } }),
|
|
1104
|
-
codeReviewStatus === 'codeCellPreview' &&
|
|
1105
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_4__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_AcceptIcon__WEBPACK_IMPORTED_MODULE_6__["default"], null), title: "Accept AI Generated Code", onClick: () => { acceptAICode(); }, style: { color: 'var(--green-700)' } }),
|
|
1106
|
-
codeReviewStatus === 'codeCellPreview' &&
|
|
1107
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_4__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_RejectIcon__WEBPACK_IMPORTED_MODULE_7__["default"], null), title: "Reject AI Generated Code", onClick: () => { rejectAICode(); }, style: { color: 'var(--red-700)' } }),
|
|
1108
|
-
codeReviewStatus !== 'codeCellPreview' &&
|
|
1109
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_4__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_CopyIcon__WEBPACK_IMPORTED_MODULE_8__["default"], null), title: "Copy", onClick: () => { void (0,_utils_copyToClipboard__WEBPACK_IMPORTED_MODULE_9__["default"])(code); } })),
|
|
1110
|
-
!isLastAiMessage &&
|
|
1111
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-toolbar' },
|
|
1112
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_4__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_CopyIcon__WEBPACK_IMPORTED_MODULE_8__["default"], null), title: "Copy", onClick: () => { void (0,_utils_copyToClipboard__WEBPACK_IMPORTED_MODULE_9__["default"])(code); } }))),
|
|
1113
|
-
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_PythonCode__WEBPACK_IMPORTED_MODULE_2__["default"], { code: code, renderMimeRegistry: renderMimeRegistry })));
|
|
1114
|
-
}
|
|
1115
|
-
return react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null);
|
|
1140
|
+
const CodeBlockToolbar = ({ code, isLastAiMessage = false, codeReviewStatus, onPreview, onAccept, onReject }) => {
|
|
1141
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-toolbar' },
|
|
1142
|
+
isLastAiMessage && codeReviewStatus === 'chatPreview' && onPreview && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_1__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_PlayButtonIcon__WEBPACK_IMPORTED_MODULE_2__["default"], null), title: "Overwrite Active Cell", onClick: onPreview })),
|
|
1143
|
+
isLastAiMessage && codeReviewStatus === 'codeCellPreview' && onAccept && onReject && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null,
|
|
1144
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_1__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_AcceptIcon__WEBPACK_IMPORTED_MODULE_3__["default"], null), title: "Accept AI Generated Code", onClick: onAccept, style: { color: 'var(--green-700)' } }),
|
|
1145
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_1__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_RejectIcon__WEBPACK_IMPORTED_MODULE_4__["default"], null), title: "Reject AI Generated Code", onClick: onReject, style: { color: 'var(--red-700)' } }))),
|
|
1146
|
+
(!isLastAiMessage || codeReviewStatus !== 'codeCellPreview') && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_components_IconButton__WEBPACK_IMPORTED_MODULE_1__["default"], { icon: react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_CopyIcon__WEBPACK_IMPORTED_MODULE_5__["default"], null), title: "Copy", onClick: () => { void (0,_utils_copyToClipboard__WEBPACK_IMPORTED_MODULE_6__["default"])(code); } }))));
|
|
1116
1147
|
};
|
|
1117
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (
|
|
1148
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (CodeBlockToolbar);
|
|
1118
1149
|
|
|
1119
1150
|
|
|
1120
1151
|
/***/ }),
|
|
@@ -1447,6 +1478,47 @@ const ScrollableSuggestions = ({ onSelectSuggestion }) => {
|
|
|
1447
1478
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ScrollableSuggestions);
|
|
1448
1479
|
|
|
1449
1480
|
|
|
1481
|
+
/***/ }),
|
|
1482
|
+
|
|
1483
|
+
/***/ "./lib/Extensions/AiChat/ChatMessage/UserCodeBlock.js":
|
|
1484
|
+
/*!************************************************************!*\
|
|
1485
|
+
!*** ./lib/Extensions/AiChat/ChatMessage/UserCodeBlock.js ***!
|
|
1486
|
+
\************************************************************/
|
|
1487
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1488
|
+
|
|
1489
|
+
__webpack_require__.r(__webpack_exports__);
|
|
1490
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1491
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
1492
|
+
/* harmony export */ });
|
|
1493
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "webpack/sharing/consume/default/react");
|
|
1494
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1495
|
+
/* harmony import */ var _PythonCode__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./PythonCode */ "./lib/Extensions/AiChat/ChatMessage/PythonCode.js");
|
|
1496
|
+
/* harmony import */ var _style_CodeBlock_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../style/CodeBlock.css */ "./style/CodeBlock.css");
|
|
1497
|
+
/* harmony import */ var _icons_ExpandIcon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../icons/ExpandIcon */ "./lib/icons/ExpandIcon.js");
|
|
1498
|
+
/*
|
|
1499
|
+
* Copyright (c) Saga Inc.
|
|
1500
|
+
* Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
1501
|
+
*/
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
|
|
1506
|
+
const UserCodeBlock = ({ code, renderMimeRegistry, agentModeEnabled }) => {
|
|
1507
|
+
const [isExpanded, setIsExpanded] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(false);
|
|
1508
|
+
const numCodePreviewLines = 5;
|
|
1509
|
+
const isCodeExpandable = code.split('\n').length > numCodePreviewLines;
|
|
1510
|
+
const previewCode = code.split('\n').slice(0, numCodePreviewLines).join('\n');
|
|
1511
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: `code-block-container active-cell-code-block ${agentModeEnabled ? 'agent-mode' : ''}`, onClick: () => setIsExpanded(!isExpanded), style: { cursor: 'pointer' } },
|
|
1512
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_PythonCode__WEBPACK_IMPORTED_MODULE_2__["default"], { code: isExpanded ? code : previewCode, renderMimeRegistry: renderMimeRegistry }),
|
|
1513
|
+
isCodeExpandable && (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("div", { className: 'code-block-expand-button', title: isExpanded ? "Collapse" : "Expand", onClick: (e) => {
|
|
1514
|
+
e.stopPropagation();
|
|
1515
|
+
setIsExpanded(!isExpanded);
|
|
1516
|
+
} },
|
|
1517
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icons_ExpandIcon__WEBPACK_IMPORTED_MODULE_3__["default"], { isExpanded: isExpanded })))));
|
|
1518
|
+
};
|
|
1519
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (UserCodeBlock);
|
|
1520
|
+
|
|
1521
|
+
|
|
1450
1522
|
/***/ }),
|
|
1451
1523
|
|
|
1452
1524
|
/***/ "./lib/Extensions/AiChat/ChatTaskpane.js":
|
|
@@ -2419,6 +2491,12 @@ const ChatTaskpane = ({ notebookTracker, renderMimeRegistry, contextManager, app
|
|
|
2419
2491
|
// TODO: Instead of casting, we should rely on the type system to make
|
|
2420
2492
|
// sure we're using the correct types!
|
|
2421
2493
|
const codeCell = cell;
|
|
2494
|
+
// Add safety check to ensure codeCell is a valid object before using it as WeakMap key
|
|
2495
|
+
// This sometimes happens when starting a chat from trymito.io
|
|
2496
|
+
if (!codeCell || typeof codeCell !== 'object') {
|
|
2497
|
+
console.warn('Mito AI: Invalid codeCell object, skipping code diff stripes');
|
|
2498
|
+
return;
|
|
2499
|
+
}
|
|
2422
2500
|
const cmEditor = codeCell.editor;
|
|
2423
2501
|
const editorView = cmEditor === null || cmEditor === void 0 ? void 0 : cmEditor.editor;
|
|
2424
2502
|
if (editorView) {
|
|
@@ -2481,7 +2559,7 @@ const ChatTaskpane = ({ notebookTracker, renderMimeRegistry, contextManager, app
|
|
|
2481
2559
|
react__WEBPACK_IMPORTED_MODULE_2___default().createElement("span", { style: { display: 'block', textAlign: 'center', fontWeight: 'bold', fontSize: '20px', marginBottom: '15px' } }, "Data Copilot"),
|
|
2482
2560
|
react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_CTACarousel__WEBPACK_IMPORTED_MODULE_25__["default"], { app: app })),
|
|
2483
2561
|
displayOptimizedChatHistory.map((displayOptimizedChat, index) => {
|
|
2484
|
-
return (react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_ChatMessage_ChatMessage__WEBPACK_IMPORTED_MODULE_26__["default"], { key: index, message: displayOptimizedChat.message, promptType: displayOptimizedChat.promptType, messageType: displayOptimizedChat.type, agentResponse: displayOptimizedChat.agentResponse, codeCellID: displayOptimizedChat.codeCellID, mitoAIConnectionError: displayOptimizedChat.type === 'connection error', mitoAIConnectionErrorType: displayOptimizedChat.mitoAIConnectionErrorType || null, messageIndex: index, notebookTracker: notebookTracker, renderMimeRegistry: renderMimeRegistry, app: app, isLastAiMessage: index === lastAIMessagesIndex, isLastMessage: index === displayOptimizedChatHistory.length - 1, operatingSystem: operatingSystem, previewAICode: previewAICodeToActiveCell, acceptAICode: acceptAICode, rejectAICode: rejectAICode, onUpdateMessage: handleUpdateMessage, contextManager: contextManager, codeReviewStatus: codeReviewStatus, setNextSteps: setNextSteps }));
|
|
2562
|
+
return (react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_ChatMessage_ChatMessage__WEBPACK_IMPORTED_MODULE_26__["default"], { key: index, message: displayOptimizedChat.message, promptType: displayOptimizedChat.promptType, messageType: displayOptimizedChat.type, agentResponse: displayOptimizedChat.agentResponse, codeCellID: displayOptimizedChat.codeCellID, mitoAIConnectionError: displayOptimizedChat.type === 'connection error', mitoAIConnectionErrorType: displayOptimizedChat.mitoAIConnectionErrorType || null, messageIndex: index, notebookTracker: notebookTracker, renderMimeRegistry: renderMimeRegistry, app: app, isLastAiMessage: index === lastAIMessagesIndex, isLastMessage: index === displayOptimizedChatHistory.length - 1, operatingSystem: operatingSystem, previewAICode: previewAICodeToActiveCell, acceptAICode: acceptAICode, rejectAICode: rejectAICode, onUpdateMessage: handleUpdateMessage, contextManager: contextManager, codeReviewStatus: codeReviewStatus, setNextSteps: setNextSteps, agentModeEnabled: agentModeEnabled }));
|
|
2485
2563
|
}).filter(message => message !== null),
|
|
2486
2564
|
loadingAIResponse &&
|
|
2487
2565
|
react__WEBPACK_IMPORTED_MODULE_2___default().createElement("div", { className: "chat-loading-message" },
|
|
@@ -6439,6 +6517,31 @@ const AcceptIcon = () => (react__WEBPACK_IMPORTED_MODULE_0___default().createEle
|
|
|
6439
6517
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (AcceptIcon);
|
|
6440
6518
|
|
|
6441
6519
|
|
|
6520
|
+
/***/ }),
|
|
6521
|
+
|
|
6522
|
+
/***/ "./lib/icons/CodeIcon.js":
|
|
6523
|
+
/*!*******************************!*\
|
|
6524
|
+
!*** ./lib/icons/CodeIcon.js ***!
|
|
6525
|
+
\*******************************/
|
|
6526
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6527
|
+
|
|
6528
|
+
__webpack_require__.r(__webpack_exports__);
|
|
6529
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6530
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
6531
|
+
/* harmony export */ });
|
|
6532
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "webpack/sharing/consume/default/react");
|
|
6533
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
6534
|
+
/*
|
|
6535
|
+
* Copyright (c) Saga Inc.
|
|
6536
|
+
* Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
6537
|
+
*/
|
|
6538
|
+
|
|
6539
|
+
const CodeIcon = () => (react__WEBPACK_IMPORTED_MODULE_0___default().createElement("svg", { width: "14", height: "14", viewBox: "0 0 20 14", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
6540
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("g", { fill: "currentColor" },
|
|
6541
|
+
react__WEBPACK_IMPORTED_MODULE_0___default().createElement("path", { d: "M12.3162 0.0513449C12.8027 0.213518 13.0817 0.713391 12.9792 1.20347L12.9487 1.31624L8.94868 13.3162C8.77403 13.8402 8.20773 14.1233 7.68378 13.9487C7.19726 13.7865 6.91835 13.2866 7.02082 12.7966L7.05134 12.6838L11.0513 0.683791C11.226 0.159848 11.7923 -0.123303 12.3162 0.0513449ZM5.79999 3.40001C6.10587 3.80785 6.05312 4.37331 5.69568 4.71852L5.59998 4.8L2.667 7.00001L5.59998 9.20003C6.00782 9.50591 6.1155 10.0635 5.86902 10.495L5.79999 10.6C5.49411 11.0079 4.9365 11.1155 4.50501 10.869L4.40003 10.8L0.40003 7.8C-0.0977483 7.42667 -0.130987 6.7049 0.30042 6.28511L0.40003 6.20003L4.40003 3.20003C4.84186 2.86866 5.46862 2.95818 5.79999 3.40001ZM15.495 3.131L15.6 3.20003L19.6 6.20003C20.0978 6.57336 20.131 7.29513 19.6996 7.71492L19.6 7.8L15.6 10.8C15.1582 11.1314 14.5314 11.0418 14.2 10.6C13.8941 10.1922 13.9469 9.62672 14.3043 9.28151L14.4 9.20003L17.333 7.00001L14.4 4.8C13.9922 4.49412 13.8845 3.93654 14.131 3.50505L14.2 3.40001C14.5059 2.99217 15.0635 2.88452 15.495 3.131Z" }))));
|
|
6542
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (CodeIcon);
|
|
6543
|
+
|
|
6544
|
+
|
|
6442
6545
|
/***/ }),
|
|
6443
6546
|
|
|
6444
6547
|
/***/ "./lib/icons/CopyIcon.js":
|
|
@@ -8632,6 +8735,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8632
8735
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8633
8736
|
/* harmony export */ waitForNotebookReady: () => (/* binding */ waitForNotebookReady)
|
|
8634
8737
|
/* harmony export */ });
|
|
8738
|
+
/*
|
|
8739
|
+
* Copyright (c) Saga Inc.
|
|
8740
|
+
* Distributed under the terms of the GNU Affero General Public License v3.0 License.
|
|
8741
|
+
*/
|
|
8635
8742
|
/*
|
|
8636
8743
|
Wait for the notebook to be ready and attached.
|
|
8637
8744
|
This is used to wait for the notebook to be ready before sending the first message.
|
|
@@ -8644,7 +8751,7 @@ const waitForNotebookReady = async (notebookTracker) => {
|
|
|
8644
8751
|
}
|
|
8645
8752
|
// Wait for notebook to be ready and attached
|
|
8646
8753
|
await notebook.context.ready;
|
|
8647
|
-
// Wait
|
|
8754
|
+
// Wait for attachment
|
|
8648
8755
|
if (!notebook.content.isAttached) {
|
|
8649
8756
|
await new Promise(resolve => {
|
|
8650
8757
|
const checkAttached = () => {
|
|
@@ -8658,6 +8765,25 @@ const waitForNotebookReady = async (notebookTracker) => {
|
|
|
8658
8765
|
checkAttached();
|
|
8659
8766
|
});
|
|
8660
8767
|
}
|
|
8768
|
+
// Wait for all cells to be created and ready
|
|
8769
|
+
await new Promise(resolve => {
|
|
8770
|
+
const checkCellsReady = () => {
|
|
8771
|
+
const cells = notebook.content.widgets;
|
|
8772
|
+
// In large notebooks, not all of the cells are attatched I think.
|
|
8773
|
+
// So instead we just wait for any cell to be ready and then give it
|
|
8774
|
+
// another 500ms to be ready.
|
|
8775
|
+
const anyCellReady = cells.some(cell => cell.isAttached && cell.model);
|
|
8776
|
+
if (anyCellReady && cells.length > 0) {
|
|
8777
|
+
resolve();
|
|
8778
|
+
}
|
|
8779
|
+
else {
|
|
8780
|
+
setTimeout(checkCellsReady, 100);
|
|
8781
|
+
}
|
|
8782
|
+
};
|
|
8783
|
+
checkCellsReady();
|
|
8784
|
+
});
|
|
8785
|
+
// Small buffer for final initialization
|
|
8786
|
+
await new Promise(resolve => setTimeout(resolve, 500));
|
|
8661
8787
|
};
|
|
8662
8788
|
|
|
8663
8789
|
|
|
@@ -10112,9 +10238,36 @@ ___CSS_LOADER_EXPORT___.push([module.id, `/*
|
|
|
10112
10238
|
background-color: transparent;
|
|
10113
10239
|
}
|
|
10114
10240
|
|
|
10241
|
+
.agent-mode-toggle {
|
|
10242
|
+
cursor: pointer;
|
|
10243
|
+
padding: 10px;
|
|
10244
|
+
color: var(--jp-ui-font-color2);
|
|
10245
|
+
display: flex;
|
|
10246
|
+
justify-content: space-between;
|
|
10247
|
+
align-items: center;
|
|
10248
|
+
border: 1px solid var(--jp-ui-font-color2);
|
|
10249
|
+
border-radius: 5px;
|
|
10250
|
+
}
|
|
10251
|
+
|
|
10252
|
+
.agent-mode-toggle-content {
|
|
10253
|
+
display: flex;
|
|
10254
|
+
align-items: center;
|
|
10255
|
+
gap: 10px;
|
|
10256
|
+
}
|
|
10257
|
+
|
|
10258
|
+
.agent-mode-toggle.expanded {
|
|
10259
|
+
border: none;
|
|
10260
|
+
border-bottom: 1px solid var(--grey-300);
|
|
10261
|
+
border-radius: 5px 5px 0 0;
|
|
10262
|
+
}
|
|
10263
|
+
|
|
10264
|
+
.agent-mode-collapsed {
|
|
10265
|
+
border: none;
|
|
10266
|
+
}
|
|
10267
|
+
|
|
10115
10268
|
|
|
10116
10269
|
|
|
10117
|
-
`, "",{"version":3,"sources":["webpack://./style/CodeBlock.css"],"names":[],"mappings":"AAAA;;;EAGE;;AAEF;EACE,aAAa;EACb,sBAAsB;EACtB,kBAAkB;EAClB,cAAc;;EAEd,8CAA8C;EAC9C,kBAAkB;EAClB,iCAAiC;EACjC,gBAAgB;AAClB;;AAEA;EACE,WAAW;EACX,gBAAgB;AAClB;;AAEA;EACE,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,oBAAoB;;EAEpB,WAAW;EACX,2DAA2D;EAC3D,wCAAwC;EACxC,gBAAgB;AAClB;;AAEA;EACE,YAAY;EACZ,gBAAgB;EAChB,0CAA0C;AAC5C;;AAEA;EACE,2DAA2D;EAC3D,YAAY;EACZ,sCAAsC;EACtC,kBAAkB;;EAElB,gBAAgB;EAChB,0CAA0C;AAC5C;;AAEA;EACE,8CAA8C;EAC9C,+CAA+C;AACjD;;AAEA;EACE,YAAY;AACd;;AAEA;EACE,UAAU;EACV,gBAAgB;AAClB;;AAEA;EACE,aAAa;EACb,uBAAuB;EACvB,mBAAmB;EACnB,cAAc;EACd,WAAW;EACX,8CAA8C;EAC9C,iCAAiC;EACjC,eAAe;AACjB;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,cAAc;EACd,SAAS;AACX;;AAEA;EACE,6BAA6B;AAC/B","sourcesContent":["/*\n * Copyright (c) Saga Inc.\n * Distributed under the terms of the GNU Affero General Public License v3.0 License.\n */\n\n.code-block-container {\n display: flex;\n flex-direction: column;\n position: relative;\n margin: 10px 0;\n\n background-color: var(--chat-background-color);\n border-radius: 4px;\n border: 1px solid var(--grey-300);\n overflow: hidden;\n}\n\n.code-content {\n width: 100%;\n overflow-x: auto;\n}\n\n.code-block-toolbar {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: end;\n\n width: 100%;\n background-color: var(--chat-user-message-background-color);\n border-bottom: 1px solid var(--grey-300);\n font-size: 0.8em;\n}\n\n.code-location {\n flex-grow: 1;\n margin-left: 5px;\n color: var(--chat-user-message-font-color);\n}\n\n.code-block-toolbar button {\n background-color: var(--chat-user-message-background-color);\n border: none;\n border-left: 1px solid var(--grey-300);\n border-radius: 0px;\n\n font-size: 0.8em;\n color: var(--chat-user-message-font-color);\n}\n\n.code-block-toolbar button:hover {\n background-color: var(--chat-background-color);\n color: var(--chat-assistant-message-font-color);\n}\n\n.active-cell-code-block {\n opacity: 0.7;\n}\n\n.active-cell-code-block:hover {\n opacity: 1;\n transition: 0.3s;\n}\n\n.code-block-expand-button {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 4px 0;\n width: 100%;\n background-color: var(--chat-background-color);\n transition: background-color 0.2s;\n cursor: pointer;\n}\n\n.code-block-expand-button:hover {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.code-block-expand-button svg {\n display: block;\n margin: 0;\n}\n\n.code-block-expand-button .icon-button {\n background-color: transparent;\n}\n\n\n\n"],"sourceRoot":""}]);
|
|
10270
|
+
`, "",{"version":3,"sources":["webpack://./style/CodeBlock.css"],"names":[],"mappings":"AAAA;;;EAGE;;AAEF;EACE,aAAa;EACb,sBAAsB;EACtB,kBAAkB;EAClB,cAAc;;EAEd,8CAA8C;EAC9C,kBAAkB;EAClB,iCAAiC;EACjC,gBAAgB;AAClB;;AAEA;EACE,WAAW;EACX,gBAAgB;AAClB;;AAEA;EACE,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,oBAAoB;;EAEpB,WAAW;EACX,2DAA2D;EAC3D,wCAAwC;EACxC,gBAAgB;AAClB;;AAEA;EACE,YAAY;EACZ,gBAAgB;EAChB,0CAA0C;AAC5C;;AAEA;EACE,2DAA2D;EAC3D,YAAY;EACZ,sCAAsC;EACtC,kBAAkB;;EAElB,gBAAgB;EAChB,0CAA0C;AAC5C;;AAEA;EACE,8CAA8C;EAC9C,+CAA+C;AACjD;;AAEA;EACE,YAAY;AACd;;AAEA;EACE,UAAU;EACV,gBAAgB;AAClB;;AAEA;EACE,aAAa;EACb,uBAAuB;EACvB,mBAAmB;EACnB,cAAc;EACd,WAAW;EACX,8CAA8C;EAC9C,iCAAiC;EACjC,eAAe;AACjB;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,cAAc;EACd,SAAS;AACX;;AAEA;EACE,6BAA6B;AAC/B;;AAEA;EACE,eAAe;EACf,aAAa;EACb,+BAA+B;EAC/B,aAAa;EACb,8BAA8B;EAC9B,mBAAmB;EACnB,0CAA0C;EAC1C,kBAAkB;AACpB;;AAEA;EACE,aAAa;EACb,mBAAmB;EACnB,SAAS;AACX;;AAEA;EACE,YAAY;EACZ,wCAAwC;EACxC,0BAA0B;AAC5B;;AAEA;EACE,YAAY;AACd","sourcesContent":["/*\n * Copyright (c) Saga Inc.\n * Distributed under the terms of the GNU Affero General Public License v3.0 License.\n */\n\n.code-block-container {\n display: flex;\n flex-direction: column;\n position: relative;\n margin: 10px 0;\n\n background-color: var(--chat-background-color);\n border-radius: 4px;\n border: 1px solid var(--grey-300);\n overflow: hidden;\n}\n\n.code-content {\n width: 100%;\n overflow-x: auto;\n}\n\n.code-block-toolbar {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: end;\n\n width: 100%;\n background-color: var(--chat-user-message-background-color);\n border-bottom: 1px solid var(--grey-300);\n font-size: 0.8em;\n}\n\n.code-location {\n flex-grow: 1;\n margin-left: 5px;\n color: var(--chat-user-message-font-color);\n}\n\n.code-block-toolbar button {\n background-color: var(--chat-user-message-background-color);\n border: none;\n border-left: 1px solid var(--grey-300);\n border-radius: 0px;\n\n font-size: 0.8em;\n color: var(--chat-user-message-font-color);\n}\n\n.code-block-toolbar button:hover {\n background-color: var(--chat-background-color);\n color: var(--chat-assistant-message-font-color);\n}\n\n.active-cell-code-block {\n opacity: 0.7;\n}\n\n.active-cell-code-block:hover {\n opacity: 1;\n transition: 0.3s;\n}\n\n.code-block-expand-button {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 4px 0;\n width: 100%;\n background-color: var(--chat-background-color);\n transition: background-color 0.2s;\n cursor: pointer;\n}\n\n.code-block-expand-button:hover {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.code-block-expand-button svg {\n display: block;\n margin: 0;\n}\n\n.code-block-expand-button .icon-button {\n background-color: transparent;\n}\n\n.agent-mode-toggle {\n cursor: pointer;\n padding: 10px;\n color: var(--jp-ui-font-color2);\n display: flex;\n justify-content: space-between;\n align-items: center;\n border: 1px solid var(--jp-ui-font-color2);\n border-radius: 5px;\n}\n\n.agent-mode-toggle-content {\n display: flex;\n align-items: center;\n gap: 10px;\n}\n\n.agent-mode-toggle.expanded {\n border: none;\n border-bottom: 1px solid var(--grey-300);\n border-radius: 5px 5px 0 0;\n}\n\n.agent-mode-collapsed {\n border: none;\n}\n\n\n\n"],"sourceRoot":""}]);
|
|
10118
10271
|
// Exports
|
|
10119
10272
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
10120
10273
|
|
|
@@ -13891,4 +14044,4 @@ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js
|
|
|
13891
14044
|
/***/ })
|
|
13892
14045
|
|
|
13893
14046
|
}]);
|
|
13894
|
-
//# sourceMappingURL=lib_index_js.
|
|
14047
|
+
//# sourceMappingURL=lib_index_js.5c78616c48ffde147e05.js.map
|