mito-ai 0.1.36__tar.gz → 0.1.38__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.

Files changed (1131) hide show
  1. mito_ai-0.1.38/PKG-INFO +218 -0
  2. mito_ai-0.1.38/mito_ai/__init__.py +84 -0
  3. mito_ai-0.1.38/mito_ai/_version.py +4 -0
  4. mito_ai-0.1.38/mito_ai/anthropic_client.py +250 -0
  5. mito_ai-0.1.38/mito_ai/app_builder/handlers.py +294 -0
  6. mito_ai-0.1.38/mito_ai/app_builder/models.py +88 -0
  7. mito_ai-0.1.38/mito_ai/auth/README.md +18 -0
  8. mito_ai-0.1.38/mito_ai/auth/__init__.py +6 -0
  9. mito_ai-0.1.38/mito_ai/auth/handlers.py +96 -0
  10. mito_ai-0.1.38/mito_ai/auth/urls.py +13 -0
  11. mito_ai-0.1.38/mito_ai/completions/completion_handlers/chat_completion_handler.py +141 -0
  12. mito_ai-0.1.38/mito_ai/completions/models.py +395 -0
  13. mito_ai-0.1.38/mito_ai/completions/prompt_builders/agent_execution_prompt.py +43 -0
  14. mito_ai-0.1.38/mito_ai/completions/prompt_builders/agent_system_message.py +421 -0
  15. mito_ai-0.1.38/mito_ai/completions/prompt_builders/chat_prompt.py +116 -0
  16. mito_ai-0.1.38/mito_ai/completions/prompt_builders/utils.py +65 -0
  17. mito_ai-0.1.38/mito_ai/constants.py +59 -0
  18. mito_ai-0.1.38/mito_ai/labextension/build_log.json +726 -0
  19. mito_ai-0.1.38/mito_ai/labextension/package.json +241 -0
  20. mito_ai-0.1.38/mito_ai/labextension/schemas/mito_ai/package.json.orig +236 -0
  21. mito_ai-0.1.38/mito_ai/labextension/schemas/mito_ai/toolbar-buttons.json +42 -0
  22. mito_ai-0.1.38/mito_ai/labextension/static/lib_index_js.5d1d7c234e2dc7c9d97b.js +15587 -0
  23. mito_ai-0.1.38/mito_ai/labextension/static/lib_index_js.5d1d7c234e2dc7c9d97b.js.map +1 -0
  24. mito_ai-0.1.38/mito_ai/labextension/static/remoteEntry.bcce4ea34631acf6dbbe.js +595 -0
  25. mito_ai-0.1.38/mito_ai/labextension/static/remoteEntry.bcce4ea34631acf6dbbe.js.map +1 -0
  26. mito_ai-0.1.38/mito_ai/labextension/static/style_index_js.5876024bb17dbd6a3ee6.js +712 -0
  27. mito_ai-0.1.38/mito_ai/labextension/static/style_index_js.5876024bb17dbd6a3ee6.js.map +1 -0
  28. mito_ai-0.1.38/mito_ai/log/handlers.py +38 -0
  29. mito_ai-0.1.38/mito_ai/log/urls.py +21 -0
  30. mito_ai-0.1.38/mito_ai/streamlit_conversion/streamlit_agent_handler.py +128 -0
  31. mito_ai-0.1.38/mito_ai/streamlit_conversion/streamlit_system_prompt.py +53 -0
  32. mito_ai-0.1.38/mito_ai/streamlit_conversion/streamlit_utils.py +98 -0
  33. mito_ai-0.1.38/mito_ai/streamlit_conversion/validate_and_run_streamlit_code.py +208 -0
  34. mito_ai-0.1.38/mito_ai/streamlit_preview/__init__.py +7 -0
  35. mito_ai-0.1.38/mito_ai/streamlit_preview/handlers.py +161 -0
  36. mito_ai-0.1.38/mito_ai/streamlit_preview/manager.py +159 -0
  37. mito_ai-0.1.38/mito_ai/streamlit_preview/urls.py +22 -0
  38. mito_ai-0.1.38/mito_ai/tests/providers/test_stream_mito_server_utils.py +140 -0
  39. mito_ai-0.1.38/mito_ai/tests/streamlit_conversion/test_streamlit_agent_handler.py +266 -0
  40. mito_ai-0.1.38/mito_ai/tests/streamlit_conversion/test_streamlit_utils.py +196 -0
  41. mito_ai-0.1.38/mito_ai/tests/streamlit_conversion/test_validate_and_run_streamlit_code.py +418 -0
  42. mito_ai-0.1.38/mito_ai/tests/streamlit_preview/test_streamlit_preview_manager.py +302 -0
  43. mito_ai-0.1.38/mito_ai/tests/test_constants.py +47 -0
  44. mito_ai-0.1.38/mito_ai/utils/__init__.py +3 -0
  45. mito_ai-0.1.38/mito_ai/utils/anthropic_utils.py +174 -0
  46. mito_ai-0.1.38/mito_ai/utils/gemini_utils.py +133 -0
  47. mito_ai-0.1.38/mito_ai/utils/mito_server_utils.py +235 -0
  48. mito_ai-0.1.38/mito_ai/utils/open_ai_utils.py +204 -0
  49. mito_ai-0.1.38/mito_ai/utils/telemetry_utils.py +385 -0
  50. mito_ai-0.1.38/package.json +236 -0
  51. mito_ai-0.1.38/pyproject.toml +110 -0
  52. mito_ai-0.1.38/schema/toolbar-buttons.json +42 -0
  53. mito_ai-0.1.38/src/Extensions/AiChat/AiChatPlugin.ts +162 -0
  54. mito_ai-0.1.38/src/Extensions/AiChat/ChatHistoryManager.tsx +422 -0
  55. mito_ai-0.1.38/src/Extensions/AiChat/ChatMessage/ChatDropdown.tsx +313 -0
  56. mito_ai-0.1.38/src/Extensions/AiChat/ChatMessage/ChatDropdownItems.tsx +138 -0
  57. mito_ai-0.1.38/src/Extensions/AiChat/ChatMessage/ChatInput.tsx +384 -0
  58. mito_ai-0.1.38/src/Extensions/AiChat/ChatMessage/ChatMessage.tsx +309 -0
  59. mito_ai-0.1.38/src/Extensions/AiChat/ChatMessage/RevertQuestionnaire.tsx +63 -0
  60. mito_ai-0.1.38/src/Extensions/AiChat/ChatTaskpane.tsx +1592 -0
  61. mito_ai-0.1.38/src/Extensions/AiChat/jupyterSettingsManager.ts +22 -0
  62. mito_ai-0.1.38/src/Extensions/AiChat/utils.tsx +34 -0
  63. mito_ai-0.1.38/src/Extensions/AppBuilder/NotebookToStreamlit.tsx +76 -0
  64. mito_ai-0.1.38/src/Extensions/AppBuilder/auth.ts +168 -0
  65. mito_ai-0.1.38/src/Extensions/AppBuilder/requirementsUtils.tsx +145 -0
  66. mito_ai-0.1.38/src/Extensions/SettingsManager/database/ConnectionList.tsx +93 -0
  67. mito_ai-0.1.38/src/Extensions/SettingsManager/database/model.ts +295 -0
  68. mito_ai-0.1.38/src/Extensions/StreamlitPreview/StreamlitPreviewPlugin.tsx +159 -0
  69. mito_ai-0.1.38/src/Extensions/ToolbarButtons/ToolbarButtonsPlugin.tsx +119 -0
  70. mito_ai-0.1.38/src/commands.tsx +24 -0
  71. mito_ai-0.1.38/src/components/AgentComponents/AssumptionToolUI.tsx +42 -0
  72. mito_ai-0.1.38/src/components/DatabaseButton.tsx +57 -0
  73. mito_ai-0.1.38/src/components/IconButton.tsx +30 -0
  74. mito_ai-0.1.38/src/components/SelectedContextContainer.tsx +59 -0
  75. mito_ai-0.1.38/src/components/TextButton.tsx +59 -0
  76. mito_ai-0.1.38/src/icons/DatabaseIcon.tsx +16 -0
  77. mito_ai-0.1.38/src/icons/DatabaseOutlineIcon.tsx +16 -0
  78. mito_ai-0.1.38/src/index.ts +32 -0
  79. mito_ai-0.1.38/src/restAPI/RestAPI.tsx +135 -0
  80. mito_ai-0.1.38/src/tests/AiChat/ChatDropdown.test.tsx +315 -0
  81. mito_ai-0.1.38/src/tests/AiChat/ChatHistoryManager.test.tsx +420 -0
  82. mito_ai-0.1.38/src/tests/AiChat/ChatInput.test.tsx +722 -0
  83. mito_ai-0.1.38/src/tests/AiChat/ChatMessage.test.tsx +499 -0
  84. mito_ai-0.1.38/src/tests/AiChat/RestoreCheckpoint.test.tsx +185 -0
  85. mito_ai-0.1.38/src/tests/AiChat/getBase64EncodedCellOutput.test.tsx +97 -0
  86. mito_ai-0.1.38/src/tests/AppBuilder/NotebookToStreamlit.test.tsx +213 -0
  87. mito_ai-0.1.38/src/tests/AppBuilder/auth.test.ts +56 -0
  88. mito_ai-0.1.38/src/tests/AppBuilder/requirementsUtils.test.tsx +532 -0
  89. mito_ai-0.1.38/src/tests/SettingsManager/ConnectionList.test.tsx +46 -0
  90. mito_ai-0.1.38/src/utils/checkpoint.tsx +56 -0
  91. mito_ai-0.1.38/src/websockets/appBuilder/appBuilderModels.ts +68 -0
  92. mito_ai-0.1.38/src/websockets/completions/CompletionModels.ts +469 -0
  93. mito_ai-0.1.38/style/AgentComponentHeader.css +59 -0
  94. mito_ai-0.1.38/style/AssumptionTool.css +46 -0
  95. mito_ai-0.1.38/style/ChatDropdown.css +114 -0
  96. mito_ai-0.1.38/style/ChatInput.css +101 -0
  97. mito_ai-0.1.38/style/ChatMessage.css +153 -0
  98. mito_ai-0.1.38/style/DatabasePage.css +96 -0
  99. mito_ai-0.1.38/style/IconButton.css +37 -0
  100. mito_ai-0.1.38/style/RevertQuestionnaire.css +97 -0
  101. mito_ai-0.1.38/style/SelectedContextContainer.css +55 -0
  102. mito_ai-0.1.38/style/TextButton.css +22 -0
  103. mito_ai-0.1.38/style/base.css +93 -0
  104. mito_ai-0.1.38/style/button.css +70 -0
  105. mito_ai-0.1.38/venv/bin/debugpy +7 -0
  106. mito_ai-0.1.38/venv/bin/debugpy-adapter +7 -0
  107. mito_ai-0.1.38/venv/bin/distro +7 -0
  108. mito_ai-0.1.38/venv/bin/docutils +7 -0
  109. mito_ai-0.1.38/venv/bin/hatch-jupyter-builder +7 -0
  110. mito_ai-0.1.38/venv/bin/hatchling +7 -0
  111. mito_ai-0.1.38/venv/bin/httpx +7 -0
  112. mito_ai-0.1.38/venv/bin/ipython +7 -0
  113. mito_ai-0.1.38/venv/bin/ipython3 +7 -0
  114. mito_ai-0.1.38/venv/bin/jlpm +7 -0
  115. mito_ai-0.1.38/venv/bin/jsonschema +7 -0
  116. mito_ai-0.1.38/venv/bin/jupyter +7 -0
  117. mito_ai-0.1.38/venv/bin/jupyter-dejavu +7 -0
  118. mito_ai-0.1.38/venv/bin/jupyter-events +7 -0
  119. mito_ai-0.1.38/venv/bin/jupyter-execute +7 -0
  120. mito_ai-0.1.38/venv/bin/jupyter-kernel +7 -0
  121. mito_ai-0.1.38/venv/bin/jupyter-kernelspec +7 -0
  122. mito_ai-0.1.38/venv/bin/jupyter-lab +7 -0
  123. mito_ai-0.1.38/venv/bin/jupyter-labextension +7 -0
  124. mito_ai-0.1.38/venv/bin/jupyter-labhub +7 -0
  125. mito_ai-0.1.38/venv/bin/jupyter-migrate +7 -0
  126. mito_ai-0.1.38/venv/bin/jupyter-nbconvert +7 -0
  127. mito_ai-0.1.38/venv/bin/jupyter-run +7 -0
  128. mito_ai-0.1.38/venv/bin/jupyter-server +7 -0
  129. mito_ai-0.1.38/venv/bin/jupyter-troubleshoot +7 -0
  130. mito_ai-0.1.38/venv/bin/jupyter-trust +7 -0
  131. mito_ai-0.1.38/venv/bin/keyring +7 -0
  132. mito_ai-0.1.38/venv/bin/markdown-it +7 -0
  133. mito_ai-0.1.38/venv/bin/normalizer +7 -0
  134. mito_ai-0.1.38/venv/bin/openai +7 -0
  135. mito_ai-0.1.38/venv/bin/pipreqs +7 -0
  136. mito_ai-0.1.38/venv/bin/pybabel +7 -0
  137. mito_ai-0.1.38/venv/bin/pygmentize +7 -0
  138. mito_ai-0.1.38/venv/bin/pyjson5 +7 -0
  139. mito_ai-0.1.38/venv/bin/pyrsa-decrypt +7 -0
  140. mito_ai-0.1.38/venv/bin/pyrsa-encrypt +7 -0
  141. mito_ai-0.1.38/venv/bin/pyrsa-keygen +7 -0
  142. mito_ai-0.1.38/venv/bin/pyrsa-priv2pub +7 -0
  143. mito_ai-0.1.38/venv/bin/pyrsa-sign +7 -0
  144. mito_ai-0.1.38/venv/bin/pyrsa-verify +7 -0
  145. mito_ai-0.1.38/venv/bin/rst2html +7 -0
  146. mito_ai-0.1.38/venv/bin/rst2html4 +7 -0
  147. mito_ai-0.1.38/venv/bin/rst2html5 +7 -0
  148. mito_ai-0.1.38/venv/bin/rst2latex +7 -0
  149. mito_ai-0.1.38/venv/bin/rst2man +7 -0
  150. mito_ai-0.1.38/venv/bin/rst2odt +7 -0
  151. mito_ai-0.1.38/venv/bin/rst2pseudoxml +7 -0
  152. mito_ai-0.1.38/venv/bin/rst2s5 +7 -0
  153. mito_ai-0.1.38/venv/bin/rst2xetex +7 -0
  154. mito_ai-0.1.38/venv/bin/rst2xml +7 -0
  155. mito_ai-0.1.38/venv/bin/send2trash +7 -0
  156. mito_ai-0.1.38/venv/bin/tqdm +7 -0
  157. mito_ai-0.1.38/venv/bin/trove-classifiers +7 -0
  158. mito_ai-0.1.38/venv/bin/twine +7 -0
  159. mito_ai-0.1.38/venv/bin/websockets +7 -0
  160. mito_ai-0.1.38/venv/bin/wsdump +7 -0
  161. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/package.json.orig +68 -0
  162. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/package.json.orig +76 -0
  163. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig +55 -0
  164. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/package.json.orig +63 -0
  165. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/package.json.orig +73 -0
  166. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/package.json.orig +63 -0
  167. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/package.json.orig +70 -0
  168. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/package.json.orig +64 -0
  169. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/package.json.orig +78 -0
  170. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/package.json.orig +71 -0
  171. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/package.json.orig +57 -0
  172. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/package.json.orig +60 -0
  173. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/package.json.orig +68 -0
  174. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/package.json.orig +82 -0
  175. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/package.json.orig +62 -0
  176. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/package.json.orig +59 -0
  177. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/package.json.orig +62 -0
  178. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/package.json.orig +58 -0
  179. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/package.json.orig +62 -0
  180. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/package.json.orig +62 -0
  181. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/package.json.orig +64 -0
  182. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/package.json.orig +64 -0
  183. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/package.json.orig +68 -0
  184. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/package.json.orig +61 -0
  185. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/package.json.orig +63 -0
  186. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/package.json.orig +62 -0
  187. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/package.json.orig +92 -0
  188. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/package.json.orig +69 -0
  189. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/package.json.orig +65 -0
  190. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/package.json.orig +71 -0
  191. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/package.json.orig +59 -0
  192. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/package.json.orig +65 -0
  193. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/package.json.orig +61 -0
  194. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/package.json.orig +66 -0
  195. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/package.json.orig +58 -0
  196. mito_ai-0.1.38/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/package.json.orig +64 -0
  197. mito_ai-0.1.38/venv/share/jupyter/lab/static/1518.3e4807844734ff34efd0.js +1 -0
  198. mito_ai-0.1.38/venv/share/jupyter/lab/static/2211.04a176892c4c3071836c.js +1 -0
  199. mito_ai-0.1.38/venv/share/jupyter/lab/static/2491.c169ecbc5fde2bcdb1b3.js +1 -0
  200. mito_ai-0.1.38/venv/share/jupyter/lab/static/2601.2429d5a03c8465ae6290.js +1 -0
  201. mito_ai-0.1.38/venv/share/jupyter/lab/static/3824.5e23be1e37fce5b7c6b3.js +1 -0
  202. mito_ai-0.1.38/venv/share/jupyter/lab/static/4010.7ccc4c383efb7272d781.js +1 -0
  203. mito_ai-0.1.38/venv/share/jupyter/lab/static/4090.eec44f90a54aa383426c.js +1 -0
  204. mito_ai-0.1.38/venv/share/jupyter/lab/static/4728.56c0b9d87316b2fa012e.js +2 -0
  205. mito_ai-0.1.38/venv/share/jupyter/lab/static/6180.edc40db2566e62650403.js +1 -0
  206. mito_ai-0.1.38/venv/share/jupyter/lab/static/6208.feaef264d58c31fc4201.js +1 -0
  207. mito_ai-0.1.38/venv/share/jupyter/lab/static/6733.bf3398ba9bb890f0fb67.js +2 -0
  208. mito_ai-0.1.38/venv/share/jupyter/lab/static/6986.a89a5aba790481992875.js +1 -0
  209. mito_ai-0.1.38/venv/share/jupyter/lab/static/7990.01eaa552261b6e12a74a.js +2 -0
  210. mito_ai-0.1.38/venv/share/jupyter/lab/static/9046.2a28e08629ab71d9ebb1.js +1 -0
  211. mito_ai-0.1.38/venv/share/jupyter/lab/static/9085.5a959b5878e7afd8a878.js +2 -0
  212. mito_ai-0.1.38/venv/share/jupyter/lab/static/9296.c82d1f1a8d9204ca6ed7.js +1 -0
  213. mito_ai-0.1.38/venv/share/jupyter/lab/static/9892.1c3a710069391fd93b5d.js +2 -0
  214. mito_ai-0.1.38/venv/share/jupyter/lab/static/build_log.json +805 -0
  215. mito_ai-0.1.38/venv/share/jupyter/lab/static/index.html +25 -0
  216. mito_ai-0.1.38/venv/share/jupyter/lab/static/jlab_core.39ffbf5b9a750816e020.js +1 -0
  217. mito_ai-0.1.38/venv/share/jupyter/lab/static/main.2155fa5c4dce2b7a12e6.js +1 -0
  218. mito_ai-0.1.38/venv/share/jupyter/lab/static/package.json +360 -0
  219. mito_ai-0.1.38/venv/share/jupyter/lab/static/third-party-licenses.json +2098 -0
  220. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/build_log.json +726 -0
  221. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/package.json +241 -0
  222. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/schemas/mito_ai/package.json.orig +236 -0
  223. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/schemas/mito_ai/toolbar-buttons.json +42 -0
  224. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.5d1d7c234e2dc7c9d97b.js +15587 -0
  225. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.5d1d7c234e2dc7c9d97b.js.map +1 -0
  226. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.bcce4ea34631acf6dbbe.js +595 -0
  227. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.bcce4ea34631acf6dbbe.js.map +1 -0
  228. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.5876024bb17dbd6a3ee6.js +712 -0
  229. mito_ai-0.1.38/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.5876024bb17dbd6a3ee6.js.map +1 -0
  230. mito_ai-0.1.36/PKG-INFO +0 -218
  231. mito_ai-0.1.36/mito_ai/__init__.py +0 -74
  232. mito_ai-0.1.36/mito_ai/_version.py +0 -4
  233. mito_ai-0.1.36/mito_ai/anthropic_client.py +0 -257
  234. mito_ai-0.1.36/mito_ai/app_builder/handlers.py +0 -216
  235. mito_ai-0.1.36/mito_ai/app_builder/models.py +0 -85
  236. mito_ai-0.1.36/mito_ai/completions/completion_handlers/chat_completion_handler.py +0 -141
  237. mito_ai-0.1.36/mito_ai/completions/models.py +0 -394
  238. mito_ai-0.1.36/mito_ai/completions/prompt_builders/agent_execution_prompt.py +0 -38
  239. mito_ai-0.1.36/mito_ai/completions/prompt_builders/agent_system_message.py +0 -407
  240. mito_ai-0.1.36/mito_ai/completions/prompt_builders/chat_prompt.py +0 -109
  241. mito_ai-0.1.36/mito_ai/completions/prompt_builders/utils.py +0 -22
  242. mito_ai-0.1.36/mito_ai/constants.py +0 -49
  243. mito_ai-0.1.36/mito_ai/labextension/build_log.json +0 -726
  244. mito_ai-0.1.36/mito_ai/labextension/package.json +0 -241
  245. mito_ai-0.1.36/mito_ai/labextension/schemas/mito_ai/package.json.orig +0 -236
  246. mito_ai-0.1.36/mito_ai/labextension/schemas/mito_ai/toolbar-buttons.json +0 -37
  247. mito_ai-0.1.36/mito_ai/labextension/static/lib_index_js.a20772bc113422d0f505.js +0 -14475
  248. mito_ai-0.1.36/mito_ai/labextension/static/lib_index_js.a20772bc113422d0f505.js.map +0 -1
  249. mito_ai-0.1.36/mito_ai/labextension/static/remoteEntry.5c9333902dce30642119.js +0 -591
  250. mito_ai-0.1.36/mito_ai/labextension/static/remoteEntry.5c9333902dce30642119.js.map +0 -1
  251. mito_ai-0.1.36/mito_ai/labextension/static/style_index_js.76efcc5c3be4056457ee.js +0 -708
  252. mito_ai-0.1.36/mito_ai/labextension/static/style_index_js.76efcc5c3be4056457ee.js.map +0 -1
  253. mito_ai-0.1.36/mito_ai/log/handlers.py +0 -31
  254. mito_ai-0.1.36/mito_ai/log/urls.py +0 -21
  255. mito_ai-0.1.36/mito_ai/tests/test_constants.py +0 -32
  256. mito_ai-0.1.36/mito_ai/utils/anthropic_utils.py +0 -226
  257. mito_ai-0.1.36/mito_ai/utils/gemini_utils.py +0 -184
  258. mito_ai-0.1.36/mito_ai/utils/mito_server_utils.py +0 -92
  259. mito_ai-0.1.36/mito_ai/utils/open_ai_utils.py +0 -293
  260. mito_ai-0.1.36/mito_ai/utils/telemetry_utils.py +0 -358
  261. mito_ai-0.1.36/package.json +0 -236
  262. mito_ai-0.1.36/pyproject.toml +0 -108
  263. mito_ai-0.1.36/schema/toolbar-buttons.json +0 -37
  264. mito_ai-0.1.36/src/Extensions/AiChat/AiChatPlugin.ts +0 -153
  265. mito_ai-0.1.36/src/Extensions/AiChat/ChatHistoryManager.tsx +0 -380
  266. mito_ai-0.1.36/src/Extensions/AiChat/ChatMessage/ChatDropdown.tsx +0 -236
  267. mito_ai-0.1.36/src/Extensions/AiChat/ChatMessage/ChatInput.tsx +0 -294
  268. mito_ai-0.1.36/src/Extensions/AiChat/ChatMessage/ChatMessage.tsx +0 -280
  269. mito_ai-0.1.36/src/Extensions/AiChat/ChatTaskpane.tsx +0 -1570
  270. mito_ai-0.1.36/src/Extensions/AppBuilder/NotebookToStreamlit.tsx +0 -155
  271. mito_ai-0.1.36/src/Extensions/AppBuilder/requirementsUtils.tsx +0 -136
  272. mito_ai-0.1.36/src/Extensions/AppBuilder/visualizationConversionUtils.tsx +0 -147
  273. mito_ai-0.1.36/src/Extensions/SettingsManager/database/ConnectionList.tsx +0 -88
  274. mito_ai-0.1.36/src/Extensions/SettingsManager/database/model.ts +0 -251
  275. mito_ai-0.1.36/src/Extensions/ToolbarButtons/ToolbarButtonsPlugin.tsx +0 -106
  276. mito_ai-0.1.36/src/commands.tsx +0 -21
  277. mito_ai-0.1.36/src/components/IconButton.tsx +0 -27
  278. mito_ai-0.1.36/src/components/SelectedContextContainer.tsx +0 -43
  279. mito_ai-0.1.36/src/components/TextButton.tsx +0 -53
  280. mito_ai-0.1.36/src/index.ts +0 -30
  281. mito_ai-0.1.36/src/restAPI/RestAPI.tsx +0 -90
  282. mito_ai-0.1.36/src/tests/AiChat/ChatDropdown.test.tsx +0 -306
  283. mito_ai-0.1.36/src/tests/AiChat/ChatInput.test.tsx +0 -552
  284. mito_ai-0.1.36/src/tests/AiChat/ChatMessage.test.tsx +0 -440
  285. mito_ai-0.1.36/src/tests/AiChat/RestoreCheckpoint.test.tsx +0 -217
  286. mito_ai-0.1.36/src/tests/AppBuilder/NotebookToStreamlit.test.tsx +0 -423
  287. mito_ai-0.1.36/src/tests/AppBuilder/transformVisualizationCell.test.tsx +0 -385
  288. mito_ai-0.1.36/src/tests/SettingsManager/ConnectionList.test.tsx +0 -46
  289. mito_ai-0.1.36/src/utils/checkpoint.tsx +0 -64
  290. mito_ai-0.1.36/src/websockets/appBuilder/appBuilderModels.ts +0 -67
  291. mito_ai-0.1.36/src/websockets/completions/CompletionModels.ts +0 -468
  292. mito_ai-0.1.36/style/AgentComponentHeader.css +0 -59
  293. mito_ai-0.1.36/style/ChatDropdown.css +0 -93
  294. mito_ai-0.1.36/style/ChatInput.css +0 -67
  295. mito_ai-0.1.36/style/ChatMessage.css +0 -153
  296. mito_ai-0.1.36/style/DatabasePage.css +0 -84
  297. mito_ai-0.1.36/style/IconButton.css +0 -13
  298. mito_ai-0.1.36/style/SelectedContextContainer.css +0 -35
  299. mito_ai-0.1.36/style/TextButton.css +0 -10
  300. mito_ai-0.1.36/style/base.css +0 -89
  301. mito_ai-0.1.36/style/button.css +0 -70
  302. mito_ai-0.1.36/venv/bin/debugpy +0 -8
  303. mito_ai-0.1.36/venv/bin/debugpy-adapter +0 -8
  304. mito_ai-0.1.36/venv/bin/distro +0 -8
  305. mito_ai-0.1.36/venv/bin/docutils +0 -8
  306. mito_ai-0.1.36/venv/bin/hatch-jupyter-builder +0 -8
  307. mito_ai-0.1.36/venv/bin/hatchling +0 -8
  308. mito_ai-0.1.36/venv/bin/httpx +0 -8
  309. mito_ai-0.1.36/venv/bin/ipython +0 -8
  310. mito_ai-0.1.36/venv/bin/ipython3 +0 -8
  311. mito_ai-0.1.36/venv/bin/jlpm +0 -8
  312. mito_ai-0.1.36/venv/bin/jsonschema +0 -8
  313. mito_ai-0.1.36/venv/bin/jupyter +0 -8
  314. mito_ai-0.1.36/venv/bin/jupyter-dejavu +0 -8
  315. mito_ai-0.1.36/venv/bin/jupyter-events +0 -8
  316. mito_ai-0.1.36/venv/bin/jupyter-execute +0 -8
  317. mito_ai-0.1.36/venv/bin/jupyter-kernel +0 -8
  318. mito_ai-0.1.36/venv/bin/jupyter-kernelspec +0 -8
  319. mito_ai-0.1.36/venv/bin/jupyter-lab +0 -8
  320. mito_ai-0.1.36/venv/bin/jupyter-labextension +0 -8
  321. mito_ai-0.1.36/venv/bin/jupyter-labhub +0 -8
  322. mito_ai-0.1.36/venv/bin/jupyter-migrate +0 -8
  323. mito_ai-0.1.36/venv/bin/jupyter-nbconvert +0 -8
  324. mito_ai-0.1.36/venv/bin/jupyter-run +0 -8
  325. mito_ai-0.1.36/venv/bin/jupyter-server +0 -8
  326. mito_ai-0.1.36/venv/bin/jupyter-troubleshoot +0 -8
  327. mito_ai-0.1.36/venv/bin/jupyter-trust +0 -8
  328. mito_ai-0.1.36/venv/bin/keyring +0 -8
  329. mito_ai-0.1.36/venv/bin/markdown-it +0 -8
  330. mito_ai-0.1.36/venv/bin/normalizer +0 -8
  331. mito_ai-0.1.36/venv/bin/openai +0 -8
  332. mito_ai-0.1.36/venv/bin/pipreqs +0 -8
  333. mito_ai-0.1.36/venv/bin/pybabel +0 -8
  334. mito_ai-0.1.36/venv/bin/pygmentize +0 -8
  335. mito_ai-0.1.36/venv/bin/pyjson5 +0 -8
  336. mito_ai-0.1.36/venv/bin/pyrsa-decrypt +0 -8
  337. mito_ai-0.1.36/venv/bin/pyrsa-encrypt +0 -8
  338. mito_ai-0.1.36/venv/bin/pyrsa-keygen +0 -8
  339. mito_ai-0.1.36/venv/bin/pyrsa-priv2pub +0 -8
  340. mito_ai-0.1.36/venv/bin/pyrsa-sign +0 -8
  341. mito_ai-0.1.36/venv/bin/pyrsa-verify +0 -8
  342. mito_ai-0.1.36/venv/bin/rst2html +0 -8
  343. mito_ai-0.1.36/venv/bin/rst2html4 +0 -8
  344. mito_ai-0.1.36/venv/bin/rst2html5 +0 -8
  345. mito_ai-0.1.36/venv/bin/rst2latex +0 -8
  346. mito_ai-0.1.36/venv/bin/rst2man +0 -8
  347. mito_ai-0.1.36/venv/bin/rst2odt +0 -8
  348. mito_ai-0.1.36/venv/bin/rst2pseudoxml +0 -8
  349. mito_ai-0.1.36/venv/bin/rst2s5 +0 -8
  350. mito_ai-0.1.36/venv/bin/rst2xetex +0 -8
  351. mito_ai-0.1.36/venv/bin/rst2xml +0 -8
  352. mito_ai-0.1.36/venv/bin/send2trash +0 -8
  353. mito_ai-0.1.36/venv/bin/tqdm +0 -8
  354. mito_ai-0.1.36/venv/bin/trove-classifiers +0 -8
  355. mito_ai-0.1.36/venv/bin/twine +0 -8
  356. mito_ai-0.1.36/venv/bin/websockets +0 -8
  357. mito_ai-0.1.36/venv/bin/wsdump +0 -8
  358. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/package.json.orig +0 -68
  359. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/package.json.orig +0 -76
  360. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/package.json.orig +0 -55
  361. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/package.json.orig +0 -63
  362. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/package.json.orig +0 -73
  363. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/package.json.orig +0 -63
  364. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/package.json.orig +0 -70
  365. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/package.json.orig +0 -64
  366. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/package.json.orig +0 -78
  367. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/package.json.orig +0 -71
  368. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/package.json.orig +0 -57
  369. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/package.json.orig +0 -60
  370. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/package.json.orig +0 -68
  371. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/package.json.orig +0 -82
  372. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/package.json.orig +0 -62
  373. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/package.json.orig +0 -59
  374. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/package.json.orig +0 -62
  375. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/package.json.orig +0 -58
  376. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/package.json.orig +0 -62
  377. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/package.json.orig +0 -62
  378. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/package.json.orig +0 -64
  379. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/package.json.orig +0 -64
  380. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/package.json.orig +0 -68
  381. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/package.json.orig +0 -61
  382. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/package.json.orig +0 -63
  383. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/package.json.orig +0 -62
  384. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/package.json.orig +0 -92
  385. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/package.json.orig +0 -69
  386. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/package.json.orig +0 -65
  387. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/package.json.orig +0 -71
  388. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/package.json.orig +0 -59
  389. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/package.json.orig +0 -65
  390. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/package.json.orig +0 -61
  391. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/package.json.orig +0 -66
  392. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/package.json.orig +0 -58
  393. mito_ai-0.1.36/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/package.json.orig +0 -64
  394. mito_ai-0.1.36/venv/share/jupyter/lab/static/2211.3123543dcc217549bbb0.js +0 -1
  395. mito_ai-0.1.36/venv/share/jupyter/lab/static/3824.5f2d72e7866264f44c07.js +0 -1
  396. mito_ai-0.1.36/venv/share/jupyter/lab/static/4010.5271baedaaff5113c699.js +0 -1
  397. mito_ai-0.1.36/venv/share/jupyter/lab/static/4090.c1367cf63af4f0088045.js +0 -1
  398. mito_ai-0.1.36/venv/share/jupyter/lab/static/4728.f59e4bd4b29409da82bc.js +0 -2
  399. mito_ai-0.1.36/venv/share/jupyter/lab/static/4958.0a9dba3bf643df0b91de.js +0 -1
  400. mito_ai-0.1.36/venv/share/jupyter/lab/static/6180.1a4acf96a100bec7a003.js +0 -1
  401. mito_ai-0.1.36/venv/share/jupyter/lab/static/6733.2d8d3e01d56d79a52e7e.js +0 -2
  402. mito_ai-0.1.36/venv/share/jupyter/lab/static/6986.c4dab251590b27fdd9ad.js +0 -1
  403. mito_ai-0.1.36/venv/share/jupyter/lab/static/7799.97fcec85f6547cd50a54.js +0 -1
  404. mito_ai-0.1.36/venv/share/jupyter/lab/static/7990.0d774450b53727ab32d5.js +0 -2
  405. mito_ai-0.1.36/venv/share/jupyter/lab/static/9046.99c477ea375dcbb8c7ca.js +0 -1
  406. mito_ai-0.1.36/venv/share/jupyter/lab/static/9085.93df3ddfd17e1e45d82c.js +0 -2
  407. mito_ai-0.1.36/venv/share/jupyter/lab/static/9137.179a3c47465e7fb8f067.js +0 -1
  408. mito_ai-0.1.36/venv/share/jupyter/lab/static/9296.1c75c887f933757c6bfb.js +0 -1
  409. mito_ai-0.1.36/venv/share/jupyter/lab/static/9744.c7c91fdb0180dcf5cd9b.js +0 -1
  410. mito_ai-0.1.36/venv/share/jupyter/lab/static/9892.6d289e7baed8c64d88e2.js +0 -2
  411. mito_ai-0.1.36/venv/share/jupyter/lab/static/build_log.json +0 -805
  412. mito_ai-0.1.36/venv/share/jupyter/lab/static/index.html +0 -25
  413. mito_ai-0.1.36/venv/share/jupyter/lab/static/jlab_core.7930f75c363206fef83d.js +0 -1
  414. mito_ai-0.1.36/venv/share/jupyter/lab/static/main.e0ad11baf75be894f6f6.js +0 -1
  415. mito_ai-0.1.36/venv/share/jupyter/lab/static/package.json +0 -360
  416. mito_ai-0.1.36/venv/share/jupyter/lab/static/third-party-licenses.json +0 -2098
  417. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/build_log.json +0 -726
  418. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/package.json +0 -241
  419. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/schemas/mito_ai/package.json.orig +0 -236
  420. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/schemas/mito_ai/toolbar-buttons.json +0 -37
  421. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.a20772bc113422d0f505.js +0 -14475
  422. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/static/lib_index_js.a20772bc113422d0f505.js.map +0 -1
  423. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.5c9333902dce30642119.js +0 -591
  424. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/static/remoteEntry.5c9333902dce30642119.js.map +0 -1
  425. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.76efcc5c3be4056457ee.js +0 -708
  426. mito_ai-0.1.36/venv/share/jupyter/labextensions/mito_ai/static/style_index_js.76efcc5c3be4056457ee.js.map +0 -1
  427. {mito_ai-0.1.36 → mito_ai-0.1.38}/.babelrc +0 -0
  428. {mito_ai-0.1.36 → mito_ai-0.1.38}/.copier-answers.yml +0 -0
  429. {mito_ai-0.1.36 → mito_ai-0.1.38}/.eslintrc.js +0 -0
  430. {mito_ai-0.1.36 → mito_ai-0.1.38}/.gitignore +0 -0
  431. {mito_ai-0.1.36 → mito_ai-0.1.38}/.prettierignore +0 -0
  432. {mito_ai-0.1.36 → mito_ai-0.1.38}/.yarnrc.yml +0 -0
  433. {mito_ai-0.1.36 → mito_ai-0.1.38}/CLAUDE.md +0 -0
  434. {mito_ai-0.1.36 → mito_ai-0.1.38}/LICENSE +0 -0
  435. {mito_ai-0.1.36 → mito_ai-0.1.38}/README.md +0 -0
  436. {mito_ai-0.1.36 → mito_ai-0.1.38}/babel.config.js +0 -0
  437. {mito_ai-0.1.36 → mito_ai-0.1.38}/declarations.d.ts +0 -0
  438. {mito_ai-0.1.36 → mito_ai-0.1.38}/dev/README.md +0 -0
  439. {mito_ai-0.1.36 → mito_ai-0.1.38}/dev/generate_ai_chats.py +0 -0
  440. {mito_ai-0.1.36 → mito_ai-0.1.38}/jest.config.js +0 -0
  441. {mito_ai-0.1.36 → mito_ai-0.1.38}/jupyter-config/jupyter_server_config.d/mito_ai.json +0 -0
  442. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/app_builder/__init__.py +0 -0
  443. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/__init__.py +0 -0
  444. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/agent_auto_error_fixup_handler.py +0 -0
  445. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/agent_execution_handler.py +0 -0
  446. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/code_explain_handler.py +0 -0
  447. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/completion_handler.py +0 -0
  448. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/inline_completer_handler.py +0 -0
  449. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/smart_debug_handler.py +0 -0
  450. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/completion_handlers/utils.py +0 -0
  451. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/handlers.py +0 -0
  452. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/message_history.py +0 -0
  453. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/__init__.py +0 -0
  454. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/agent_smart_debug_prompt.py +0 -0
  455. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/chat_name_prompt.py +0 -0
  456. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/chat_system_message.py +0 -0
  457. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/explain_code_prompt.py +0 -0
  458. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/inline_completer_prompt.py +0 -0
  459. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/prompt_constants.py +0 -0
  460. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/prompt_builders/smart_debug_prompt.py +0 -0
  461. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/completions/providers.py +0 -0
  462. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/__init__.py +0 -0
  463. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/crawlers/__init__.py +0 -0
  464. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/crawlers/base_crawler.py +0 -0
  465. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/crawlers/constants.py +0 -0
  466. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/crawlers/snowflake.py +0 -0
  467. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/handlers.py +0 -0
  468. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/models.py +0 -0
  469. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/urls.py +0 -0
  470. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/db/utils.py +0 -0
  471. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/mssql/compose.yml +0 -0
  472. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/mssql/init/setup.sql +0 -0
  473. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/mysql/compose.yml +0 -0
  474. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/mysql/init/setup.sql +0 -0
  475. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/oracle/compose.yml +0 -0
  476. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/oracle/init/setup.sql +0 -0
  477. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/postgres/compose.yml +0 -0
  478. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/docker/postgres/init/setup.sql +0 -0
  479. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/enterprise/__init__.py +0 -0
  480. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/enterprise/utils.py +0 -0
  481. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/gemini_client.py +0 -0
  482. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/labextension/static/style.js +0 -0
  483. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/labextension/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js +0 -0
  484. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/labextension/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js.map +0 -0
  485. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/labextension/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js +0 -0
  486. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/labextension/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js.map +0 -0
  487. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/logger.py +0 -0
  488. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/openai_client.py +0 -0
  489. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/rules/handlers.py +0 -0
  490. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/rules/urls.py +0 -0
  491. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/rules/utils.py +0 -0
  492. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/settings/handlers.py +0 -0
  493. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/settings/urls.py +0 -0
  494. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/settings/utils.py +0 -0
  495. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/__init__.py +0 -0
  496. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/conftest.py +0 -0
  497. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/create_agent_system_message_prompt_test.py +0 -0
  498. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/data/prompt_lg.py +0 -0
  499. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/data/prompt_sm.py +0 -0
  500. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/data/prompt_xl.py +0 -0
  501. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/data/stock_data.sqlite3 +0 -0
  502. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/conftest.py +0 -0
  503. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/connections_test.py +0 -0
  504. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/mssql_test.py +0 -0
  505. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/mysql_test.py +0 -0
  506. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/oracle_test.py +0 -0
  507. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/postgres_test.py +0 -0
  508. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/schema_test.py +0 -0
  509. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/sqlite_test.py +0 -0
  510. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/db/test_db_constants.py +0 -0
  511. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/message_history/test_generate_short_chat_name.py +0 -0
  512. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/message_history/test_message_history_utils.py +0 -0
  513. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/open_ai_utils_test.py +0 -0
  514. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/performance_test.py +0 -0
  515. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_anthropic_client.py +0 -0
  516. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_azure.py +0 -0
  517. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_capabilities.py +0 -0
  518. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_gemini_client.py +0 -0
  519. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_mito_server_utils.py +0 -0
  520. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_model_resolution.py +0 -0
  521. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_openai_client.py +0 -0
  522. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_provider_completion_exception.py +0 -0
  523. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_provider_limits.py +0 -0
  524. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_providers.py +0 -0
  525. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/test_retry_logic.py +0 -0
  526. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/providers/utils.py +0 -0
  527. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/rules/conftest.py +0 -0
  528. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/rules/rules_test.py +0 -0
  529. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/server_limits_test.py +0 -0
  530. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/settings/conftest.py +0 -0
  531. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/settings/settings_test.py +0 -0
  532. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/settings/test_settings_constants.py +0 -0
  533. {mito_ai-0.1.36/mito_ai/tests/utils → mito_ai-0.1.38/mito_ai/tests/streamlit_conversion}/__init__.py +0 -0
  534. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/test_telemetry.py +0 -0
  535. {mito_ai-0.1.36/mito_ai → mito_ai-0.1.38/mito_ai/tests}/utils/__init__.py +0 -0
  536. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/utils/test_anthropic_utils.py +0 -0
  537. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/utils/test_gemini_utils.py +0 -0
  538. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/tests/version_check_test.py +0 -0
  539. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/create.py +0 -0
  540. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/db.py +0 -0
  541. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/message_history_utils.py +0 -0
  542. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/provider_utils.py +0 -0
  543. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/schema.py +0 -0
  544. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/server_limits.py +0 -0
  545. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/utils.py +0 -0
  546. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/version_utils.py +0 -0
  547. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/utils/websocket_base.py +0 -0
  548. {mito_ai-0.1.36 → mito_ai-0.1.38}/mito_ai/version_check.py +0 -0
  549. {mito_ai-0.1.36 → mito_ai-0.1.38}/mypy.ini +0 -0
  550. {mito_ai-0.1.36 → mito_ai-0.1.38}/package-lock.json +0 -0
  551. {mito_ai-0.1.36 → mito_ai-0.1.38}/requirements.txt +0 -0
  552. {mito_ai-0.1.36 → mito_ai-0.1.38}/setup.py +0 -0
  553. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/CTACarousel.tsx +0 -0
  554. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/AlertBlock.tsx +0 -0
  555. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/AssistantCodeBlock.tsx +0 -0
  556. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/Citation.tsx +0 -0
  557. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/CodeBlockToolbar.tsx +0 -0
  558. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/MarkdownBlock.tsx +0 -0
  559. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/PythonCode.tsx +0 -0
  560. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/ScrollableSuggestions.tsx +0 -0
  561. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatMessage/UserCodeBlock.tsx +0 -0
  562. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/ChatWidget.tsx +0 -0
  563. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/CodeDiffDisplay.tsx +0 -0
  564. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/FirstMessage.ts +0 -0
  565. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AiChat/token.ts +0 -0
  566. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AppBuilder/AppBuilderPlugin.ts +0 -0
  567. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AppBuilder/DeployAppNotification.tsx +0 -0
  568. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AppBuilder/cellConversionUtils.tsx +0 -0
  569. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AppBuilder/fileUtils.tsx +0 -0
  570. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/AppBuilder/visualization_test_notebook.ipynb +0 -0
  571. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/ContextManager/ContextManagerPlugin.ts +0 -0
  572. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/ContextManager/FileInspector.tsx +0 -0
  573. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/ContextManager/VariableInspector.tsx +0 -0
  574. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/ErrorMimeRenderer/CollapsibleWarningBlock.tsx +0 -0
  575. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/ErrorMimeRenderer/ErrorMimeRendererPlugin.tsx +0 -0
  576. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/ErrorMimeRenderer/errorUtils.tsx +0 -0
  577. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/InlineCompleter/index.ts +0 -0
  578. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/InlineCompleter/provider.ts +0 -0
  579. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/NotebookFooter/NotebookFooter.tsx +0 -0
  580. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/NotebookFooter/index.tsx +0 -0
  581. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/SettingsManagerPlugin.tsx +0 -0
  582. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/SettingsWidget.tsx +0 -0
  583. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/database/ConnectionForm.tsx +0 -0
  584. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/database/DatabasePage.tsx +0 -0
  585. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/general/GeneralPage.tsx +0 -0
  586. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/rules/RulesForm.tsx +0 -0
  587. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/rules/RulesPage.tsx +0 -0
  588. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/rules/models.ts +0 -0
  589. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/SettingsManager/support/SupportPage.tsx +0 -0
  590. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/VersionCheck/index.ts +0 -0
  591. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/emptyCell/EmptyCellPlugin.ts +0 -0
  592. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/emptyCell/emptyCell.ts +0 -0
  593. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/Extensions/status/index.tsx +0 -0
  594. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/AgentComponents/AgentComponentHeader.tsx +0 -0
  595. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/AgentComponents/ErrorFixupToolUI.tsx +0 -0
  596. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/AgentComponents/GetCellOutputToolUI.tsx +0 -0
  597. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/DropdownMenu.tsx +0 -0
  598. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/LoadingCircle.tsx +0 -0
  599. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/LoadingDots.tsx +0 -0
  600. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/ModelSelector.tsx +0 -0
  601. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/NextStepsPills.tsx +0 -0
  602. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/TextAndIconButton.tsx +0 -0
  603. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/components/ToggleButton.tsx +0 -0
  604. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/hooks/useDebouncedEffect.tsx +0 -0
  605. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/hooks/useDebouncedFunction.tsx +0 -0
  606. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/AcceptIcon.tsx +0 -0
  607. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/AiIcon.tsx +0 -0
  608. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/AlertIcon.tsx +0 -0
  609. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/AppBuilderExcludeCellIcon.svg +0 -0
  610. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/AppBuilderIncludeCellIcon.svg +0 -0
  611. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/ChatIcon.svg +0 -0
  612. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/ChatIcon.tsx +0 -0
  613. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/Check.tsx +0 -0
  614. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/CodeIcon.tsx +0 -0
  615. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/CopyIcon.tsx +0 -0
  616. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/ErrorIcon.tsx +0 -0
  617. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/ExpandIcon.tsx +0 -0
  618. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/GarbageIcon.tsx +0 -0
  619. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/LightbulbIcon.svg +0 -0
  620. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/MagicWand.tsx +0 -0
  621. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/MagnifyingGlassIcon.tsx +0 -0
  622. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/MitoLogo.tsx +0 -0
  623. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/NotebookFooter/CodeIcon.tsx +0 -0
  624. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/NotebookFooter/TextIcon.tsx +0 -0
  625. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/NucleausIcon.tsx +0 -0
  626. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/NucleusIcon.svg +0 -0
  627. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/OpenIndicatorIcon.svg +0 -0
  628. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/Pencil.tsx +0 -0
  629. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/PlayButtonIcon.tsx +0 -0
  630. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/RejectIcon.tsx +0 -0
  631. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/RobotHeadIcon.tsx +0 -0
  632. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/RuleIcon.tsx +0 -0
  633. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/SupportIcon.tsx +0 -0
  634. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/UndoIcon.tsx +0 -0
  635. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/WrenchAndScrewdriverIcon.tsx +0 -0
  636. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/XMark.tsx +0 -0
  637. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/icons/index.ts +0 -0
  638. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/restAPI/utils.ts +0 -0
  639. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AiChat/AssistantCodeBlock.test.tsx +0 -0
  640. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AiChat/CTACarousel.test.tsx +0 -0
  641. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AiChat/CodeBlockToolbar.test.tsx +0 -0
  642. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AiChat/ModelSelector.test.tsx +0 -0
  643. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AiChat/NextSteps.test.tsx +0 -0
  644. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AiChat/UserCodeBlock.test.tsx +0 -0
  645. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AppBuilder/transformInvalidLines.test.tsx +0 -0
  646. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/AppBuilder/transformMitoAppInput.test.tsx +0 -0
  647. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/ContextManager/ContextManagerPlugin.test.tsx +0 -0
  648. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/NotebookFooter/notebookFooter.test.tsx +0 -0
  649. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/__mocks__/fileMock.js +0 -0
  650. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/__mocks__/jupyterMocks.ts +0 -0
  651. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/__mocks__/openaiMocks.ts +0 -0
  652. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/__mocks__/styleMock.js +0 -0
  653. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/setup/setupTests.js +0 -0
  654. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/utils/blacklistedWords.test.tsx +0 -0
  655. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/tests/utils/processChatHistoryForErrorGrouping.test.tsx +0 -0
  656. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/agentActions.tsx +0 -0
  657. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/arrays.tsx +0 -0
  658. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/blacklistedWords.tsx +0 -0
  659. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/chatHistory.tsx +0 -0
  660. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/classNames.tsx +0 -0
  661. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/codeDiff.tsx +0 -0
  662. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/copyToClipboard.tsx +0 -0
  663. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/errors.tsx +0 -0
  664. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/fileName.tsx +0 -0
  665. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/nodeToPng.tsx +0 -0
  666. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/notebook.tsx +0 -0
  667. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/scroll.tsx +0 -0
  668. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/scrollMask.ts +0 -0
  669. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/sleep.ts +0 -0
  670. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/strings.tsx +0 -0
  671. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/stripe.tsx +0 -0
  672. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/user.tsx +0 -0
  673. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/version_check.ts +0 -0
  674. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/utils/waitForNotebookReady.ts +0 -0
  675. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/websockets/BaseWebsocketClient.ts +0 -0
  676. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/websockets/appBuilder/appBuilderWebsocketClient.ts +0 -0
  677. {mito_ai-0.1.36 → mito_ai-0.1.38}/src/websockets/completions/CompletionsWebsocketClient.ts +0 -0
  678. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/CTACarousel.css +0 -0
  679. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/ChatTaskpane.css +0 -0
  680. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/Citation.css +0 -0
  681. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/CodeBlock.css +0 -0
  682. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/ConnectionForm.css +0 -0
  683. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/DropdownMenu.css +0 -0
  684. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/ErrorFixupToolUI.css +0 -0
  685. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/ErrorMimeRendererPlugin.css +0 -0
  686. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/GetCellOutputToolUI.css +0 -0
  687. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/MarkdownMessage.css +0 -0
  688. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/ModelSelector.css +0 -0
  689. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/NextStepsPills.css +0 -0
  690. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/NotebookFooter.css +0 -0
  691. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/PythonCode.css +0 -0
  692. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/RulesForm.css +0 -0
  693. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/SettingsWidget.css +0 -0
  694. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/TextAndIconButton.css +0 -0
  695. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/ToggleButton.css +0 -0
  696. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/icons.css +0 -0
  697. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/index.css +0 -0
  698. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/index.js +0 -0
  699. {mito_ai-0.1.36 → mito_ai-0.1.38}/style/statusItem.css +0 -0
  700. {mito_ai-0.1.36 → mito_ai-0.1.38}/tsconfig.json +0 -0
  701. {mito_ai-0.1.36 → mito_ai-0.1.38}/tsconfig.test.json +0 -0
  702. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/Activate.ps1 +0 -0
  703. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/activate +0 -0
  704. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/activate.csh +0 -0
  705. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/activate.fish +0 -0
  706. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/jsonpointer +0 -0
  707. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/pip +0 -0
  708. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/pip3 +0 -0
  709. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/pip3.11 +0 -0
  710. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/python +0 -0
  711. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/python3 +0 -0
  712. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/bin/python3.11 +0 -0
  713. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json +0 -0
  714. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/jupyter_server_config.d/jupyter-lsp-jupyter-server.json +0 -0
  715. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json +0 -0
  716. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/jupyter_server_config.d/jupyterlab.json +0 -0
  717. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/jupyter_server_config.d/mito_ai.json +0 -0
  718. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/jupyter_server_config.d/notebook_shim.json +0 -0
  719. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/etc/jupyter/labconfig/page_config.json +0 -0
  720. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/include/site/python3.11/greenlet/greenlet.h +0 -0
  721. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/pyvenv.cfg +0 -0
  722. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/applications/jupyterlab.desktop +0 -0
  723. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/icons/hicolor/scalable/apps/jupyterlab.svg +0 -0
  724. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/kernels/python3/kernel.json +0 -0
  725. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/kernels/python3/logo-32x32.png +0 -0
  726. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/kernels/python3/logo-64x64.png +0 -0
  727. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/kernels/python3/logo-svg.svg +0 -0
  728. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/commands.json +0 -0
  729. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/context-menu.json +0 -0
  730. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/property-inspector.json +0 -0
  731. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/shell.json +0 -0
  732. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/application-extension/top-bar.json +0 -0
  733. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/kernels-settings.json +0 -0
  734. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/notification.json +0 -0
  735. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/palette.json +0 -0
  736. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/print.json +0 -0
  737. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sanitizer.json +0 -0
  738. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/sessionDialogs.json +0 -0
  739. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/themes.json +0 -0
  740. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/apputils-extension/utilityCommands.json +0 -0
  741. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/cell-toolbar-extension/plugin.json +0 -0
  742. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/celltags-extension/plugin.json +0 -0
  743. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/codemirror-extension/plugin.json +0 -0
  744. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/inline-completer.json +0 -0
  745. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/completer-extension/manager.json +0 -0
  746. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/completer.json +0 -0
  747. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/foreign.json +0 -0
  748. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/console-extension/tracker.json +0 -0
  749. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/csv.json +0 -0
  750. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/csvviewer-extension/tsv.json +0 -0
  751. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/debugger-extension/main.json +0 -0
  752. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/download.json +0 -0
  753. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/docmanager-extension/plugin.json +0 -0
  754. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/documentsearch-extension/plugin.json +0 -0
  755. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/extensionmanager-extension/plugin.json +0 -0
  756. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/browser.json +0 -0
  757. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/download.json +0 -0
  758. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/open-browser-tab.json +0 -0
  759. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/open-with.json +0 -0
  760. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/filebrowser-extension/widget.json +0 -0
  761. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/completer.json +0 -0
  762. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/fileeditor-extension/plugin.json +0 -0
  763. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/about.json +0 -0
  764. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/jupyter-forum.json +0 -0
  765. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/help-extension/launch-classic.json +0 -0
  766. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/htmlviewer-extension/plugin.json +0 -0
  767. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/hub-extension/menu.json +0 -0
  768. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/imageviewer-extension/plugin.json +0 -0
  769. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/consoles.json +0 -0
  770. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/inspector.json +0 -0
  771. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/inspector-extension/notebooks.json +0 -0
  772. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/launcher-extension/plugin.json +0 -0
  773. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/logconsole-extension/plugin.json +0 -0
  774. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/lsp-extension/plugin.json +0 -0
  775. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/mainmenu-extension/plugin.json +0 -0
  776. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/markdownviewer-extension/plugin.json +0 -0
  777. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/mathjax-extension/plugin.json +0 -0
  778. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/metadataform-extension/metadataforms.json +0 -0
  779. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/completer.json +0 -0
  780. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/export.json +0 -0
  781. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/panel.json +0 -0
  782. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/tools.json +0 -0
  783. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/notebook-extension/tracker.json +0 -0
  784. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/running-extension/plugin.json +0 -0
  785. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/form-ui.json +0 -0
  786. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/settingeditor-extension/plugin.json +0 -0
  787. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/shortcuts-extension/shortcuts.json +0 -0
  788. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/statusbar-extension/plugin.json +0 -0
  789. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/terminal-extension/plugin.json +0 -0
  790. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/toc-extension/registry.json +0 -0
  791. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/consoles.json +0 -0
  792. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/files.json +0 -0
  793. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/tooltip-extension/notebooks.json +0 -0
  794. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/translation-extension/plugin.json +0 -0
  795. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/indicator.json +0 -0
  796. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/menu.json +0 -0
  797. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/schemas/@jupyterlab/workspaces-extension/sidebar.json +0 -0
  798. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/100.1d14ca44a3cc8849349f.js +0 -0
  799. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1039.3fe94e87219c0ed159d3.js +0 -0
  800. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1096.dd4c563e0483cbbeb9c9.js +0 -0
  801. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1189.c1482e88f0e949753db6.js +0 -0
  802. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1208.4b9ab7b231d39ebdbc3f.js +0 -0
  803. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1219.b5630aa3a46050fddc27.js +0 -0
  804. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1268.e75d8a6dd557ac8957ca.js +0 -0
  805. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1359.d5f23f0e2a6f67b69751.js +0 -0
  806. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1423.4bcf4453e1c1d12d872f.js +0 -0
  807. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1436.2c11d9dee0ad6f49e968.js +0 -0
  808. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1445.a0e099c27d073217031a.js +0 -0
  809. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1449.7026e8748d2a77e15d5b.js +0 -0
  810. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1462.57e39f487257f25263d4.js +0 -0
  811. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1491.010c623dd546db976e95.js +0 -0
  812. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1495.13603dd823bbf5eb08b3.js +0 -0
  813. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1673.b0ee25168543434bdbca.js +0 -0
  814. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1737.a5fc97075f693ec36fe6.js +0 -0
  815. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1832.b1ede2fe899bdec88938.js +0 -0
  816. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1834.7445ad0c82371ac40737.js +0 -0
  817. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1838.839690ff17ec3c532f0a.js +0 -0
  818. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1887.56f83f163a18c61efb16.js +0 -0
  819. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js +0 -0
  820. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1909.7487a09fefbe7f9eabb6.js.LICENSE.txt +0 -0
  821. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1912.f16dddc294d66c3c81e9.js +0 -0
  822. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1954.f1c519cb1415c7da3e8c.js +0 -0
  823. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1960.f8d8ef8a91360e60f0b9.js +0 -0
  824. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1962.6a7da74e809b70d5200d.js +0 -0
  825. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1969.86e3168e52802569d650.js +0 -0
  826. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1986.26029e99ef54a5652df8.js +0 -0
  827. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1991.84fc123d7cfe8ae2948e.js +0 -0
  828. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/1cb1c39ea642f26a4dfe.woff +0 -0
  829. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2023.59b30086fbeff6d17e3b.js +0 -0
  830. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/227.6bd3154334bb91c5ca1c.js +0 -0
  831. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/227.6bd3154334bb91c5ca1c.js.LICENSE.txt +0 -0
  832. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2280.6614699f54522fffbc00.js +0 -0
  833. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/232.5419cbec68e3fd0cf431.js +0 -0
  834. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/232.5419cbec68e3fd0cf431.js.LICENSE.txt +0 -0
  835. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2353.ab70488f07a7c0a7a3fd.js +0 -0
  836. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/246.326a6482593e8a7bcd58.js +0 -0
  837. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2467.4227742ac4b60289f222.js +0 -0
  838. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/247.84259ab142dd8c151fc2.js +0 -0
  839. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2550.75fcaa650ffac405c0dc.js +0 -0
  840. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2574.327dadfe49120269ff31.js +0 -0
  841. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2576.b98b7b23adeec4cb6932.js +0 -0
  842. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2590.99e505d19b964439aa31.js +0 -0
  843. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2633.ea053b40991eb5adbc69.js +0 -0
  844. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2641.e77441e7a3e0d12834c5.js +0 -0
  845. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/265.6f9e37c0b72db64203b1.js +0 -0
  846. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2658.d1cae1b08b068d864368.js +0 -0
  847. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/26683bf201fb258a2237.woff +0 -0
  848. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2681.a47f40e38ecd31ccd687.js +0 -0
  849. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2707.61050e600b0aa9624127.js +0 -0
  850. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2729.cafaf0caf2c0c83ac9fe.js +0 -0
  851. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2794.05495c139ed000b57598.js +0 -0
  852. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2823.0b6015b5e03c08281f41.js +0 -0
  853. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2880.8483d51b11998bfe8e4b.js +0 -0
  854. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2957.bc5eb9549a0b15c44916.js +0 -0
  855. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/2959.b24c9f67d639376f5ead.js +0 -0
  856. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3048.59e6166a886a78f4f698.js +0 -0
  857. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/30e889b58cbc51adfbb0.woff +0 -0
  858. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3111.33574d9124842f355bce.js +0 -0
  859. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3112.0757b31e24c5334fda73.js +0 -0
  860. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3122.fed5688acdcf6ff6aa6b.js +0 -0
  861. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/321.0fb994fd384a54491584.js +0 -0
  862. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3257.30af681f0c294efb65f7.js +0 -0
  863. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3257.30af681f0c294efb65f7.js.LICENSE.txt +0 -0
  864. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/32792104b5ef69eded90.woff +0 -0
  865. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3282.22e78350d54fcaf3c6c8.js +0 -0
  866. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3293.375c6685d72662fc062f.js +0 -0
  867. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3303.b5596c0715d2d58332fb.js +0 -0
  868. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3358.7ba73a6804155b619b44.js +0 -0
  869. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3372.8eeafd96de9a7a205f40.js +0 -0
  870. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/339.380593b40d8d41150a4e.js +0 -0
  871. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/355254db9ca10a09a3b5.woff +0 -0
  872. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3616.a4271ffcf2ac3b4c2338.js +0 -0
  873. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/36e0d72d8a7afc696a3e.woff +0 -0
  874. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3709.e33bc30c83272aa85628.js +0 -0
  875. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/373c04fd2418f5c77eea.eot +0 -0
  876. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3763.56191df5d72d2ffa5aa6.js +0 -0
  877. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3780.c9294dc98ae926717741.js +0 -0
  878. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3799.eaa0438bc5c41bad0516.js +0 -0
  879. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3832.c6026c483bb46cc8e599.js +0 -0
  880. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3974.79f68bca9a02c92dab5e.js +0 -0
  881. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3991.678edf189fe92a216c70.js +0 -0
  882. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3bc6ecaae7ecf6f8d7f8.woff +0 -0
  883. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3de784d07b9fa8f104c1.woff +0 -0
  884. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/3f6d3488cf65374f6f67.woff +0 -0
  885. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4001.80ab3ef5300d7ce2d1fe.js +0 -0
  886. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4053.4945facc348478fd59f4.js +0 -0
  887. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4068.9cc41f46f729f2c4369b.js +0 -0
  888. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4076.b4d803d8bf1bd6c97854.js +0 -0
  889. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4266.155b468271987c81d948.js +0 -0
  890. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4296.721da424585874d0789e.js +0 -0
  891. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4311.b44e8bc4829e0b1226d2.js +0 -0
  892. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4323.b2bd8a329a81d30ed039.js +0 -0
  893. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4350.8c8a0e7a3ffe036494e1.js +0 -0
  894. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4353.8572f6845cfde92dc152.js +0 -0
  895. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4364.b9b49d8d836882f44e62.js +0 -0
  896. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4372.645626a2452c190dbb22.js +0 -0
  897. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4372.645626a2452c190dbb22.js.LICENSE.txt +0 -0
  898. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4408.f24dd0edf35e08548967.js +0 -0
  899. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4462.c3c6de84bc9399e0290d.js +0 -0
  900. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4484.e1d2565d1a3daa5fe5f1.js +0 -0
  901. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4486.8d2f41ae787607b7bf31.js +0 -0
  902. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4528.43328125d98d6cfdfa99.js +0 -0
  903. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4611.bd2b768223b0cd570834.js +0 -0
  904. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4616.04cfbd55593c51921cc7.js +0 -0
  905. /mito_ai-0.1.36/venv/share/jupyter/lab/static/4728.f59e4bd4b29409da82bc.js.LICENSE.txt → /mito_ai-0.1.38/venv/share/jupyter/lab/static/4728.56c0b9d87316b2fa012e.js.LICENSE.txt +0 -0
  906. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4735.7731d551ca68bcb58e9f.js +0 -0
  907. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4797.3740ef47b224a11a7fab.js +0 -0
  908. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/481e39042508ae313a60.woff +0 -0
  909. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4838.8db4c61349bfba200547.js +0 -0
  910. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4855.29e8dc6982ba4873487d.js +0 -0
  911. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4878.f7557c5c99a54b40c49b.js +0 -0
  912. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/492.5f186062d2dcdf79c86c.js +0 -0
  913. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4928.6cb408e4def87534970d.js +0 -0
  914. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4981.eed4ddb90566e90e3df4.js +0 -0
  915. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/4982.c609185756485c6e3344.js +0 -0
  916. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5085.a38923f36b551620798a.js +0 -0
  917. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js +0 -0
  918. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5090.404be96d8a6eae1e719a.js.LICENSE.txt +0 -0
  919. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5135.7f204de2153e4d85406d.js +0 -0
  920. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5211.83e78dadcef89cae04bf.js +0 -0
  921. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5224.8a6bbc774d20be66fdfb.js +0 -0
  922. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5244.eefac84704ad30f00af3.js +0 -0
  923. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5317.f4bba2e3d0f4fdd088f7.js +0 -0
  924. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5318.d5df5c275e925c22d780.js +0 -0
  925. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5338.38c32bdfb0695f9b501f.js +0 -0
  926. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5489.7fab44eac7538297b164.js +0 -0
  927. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5492.44728a640c37a4b4aa0c.js +0 -0
  928. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5521.0337f193af4e5eee6057.js +0 -0
  929. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5566.c76ea61eb723ee84e2cf.js +0 -0
  930. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5606.e03dfa10c124a03f36ba.js +0 -0
  931. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/580.4ea1e6182e0b35ff091a.js +0 -0
  932. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5829.0e46d479b4ade4783661.js +0 -0
  933. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5847.930208c25e45ecf30657.js +0 -0
  934. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5862.be1ec453e8db6844c62d.js +0 -0
  935. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5877.72ab5a29e95ce21981e4.js +0 -0
  936. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5929.d561797f8259994ecdd8.js +0 -0
  937. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5942.05cbcd55c5f45ff7db43.js +0 -0
  938. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5987.7e967df5417044d337a4.js +0 -0
  939. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/5cda41563a095bd70c78.woff +0 -0
  940. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6003.94cdab770c801f3c46f7.js +0 -0
  941. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6060.52dca011e9f2f279fc5e.js +0 -0
  942. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6095.6e79e3bad86e054aa8c8.js +0 -0
  943. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6145.c422868290460078c013.js +0 -0
  944. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6166.2bc9ac8e2156c0701a52.js +0 -0
  945. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6170.65d899f43342f1e34bf1.js +0 -0
  946. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6214.617de47747c5a9b19ef7.js +0 -0
  947. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6275.e99f9312900c481b467d.js +0 -0
  948. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6294.b3cb5e16527b9d09b4a2.js +0 -0
  949. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6364.c592f3101de349ba3904.js +0 -0
  950. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6372.edc0712a4be855493530.js +0 -0
  951. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6412.ebdf8da40f1ba8272df9.js +0 -0
  952. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6439.1723c0b3882bf535486e.js +0 -0
  953. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6460.d9aaa1e48da295c6035d.js +0 -0
  954. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/649.4081045b1737e4213282.js +0 -0
  955. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6492.804d51a693edf6978ef4.js +0 -0
  956. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6540.51c00e890179a4832552.js +0 -0
  957. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6540.51c00e890179a4832552.js.LICENSE.txt +0 -0
  958. /mito_ai-0.1.36/venv/share/jupyter/lab/static/6733.2d8d3e01d56d79a52e7e.js.LICENSE.txt → /mito_ai-0.1.38/venv/share/jupyter/lab/static/6733.bf3398ba9bb890f0fb67.js.LICENSE.txt +0 -0
  959. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6767.4b82d96c237ca7e31bc6.js +0 -0
  960. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6779.051cfbcb0700a96839b2.js +0 -0
  961. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6831.1df8fa4cabb5b1c19803.js +0 -0
  962. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6843.dabcc3c9658bc6ded6d1.js +0 -0
  963. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6874.bb2f7fbc6ce56eecc800.js +0 -0
  964. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6896.af1d649e0efae70b7b1a.js +0 -0
  965. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6941.465bebbd3d8a024f5f15.js +0 -0
  966. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6974.b5b353b8af28fbc91291.js +0 -0
  967. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/6993.c93f5a810fcf441cbb6f.js +0 -0
  968. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7136.b312751fbb25b73f5e71.js +0 -0
  969. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/721921bab0d001ebff02.woff +0 -0
  970. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7250.b88d0a5e237ff5ff1aad.js +0 -0
  971. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7260.b47dcaccbe7991104e8a.js +0 -0
  972. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7269.962f078e97afc4f68e79.js +0 -0
  973. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/72bc573386dd1d48c5bb.woff +0 -0
  974. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/731.82a7b980b5b7f4b7a14f.js +0 -0
  975. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7318.7cc6b4b0b3151b205ecb.js +0 -0
  976. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7371.63b12ce793df713ab95b.js +0 -0
  977. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7425.f1c25f6c8aaec77e8635.js +0 -0
  978. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7445.7c793c8e1720f8ec4f85.js +0 -0
  979. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7575.2e3e32236d5667bba43f.js +0 -0
  980. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7587.3112240b6b82407b0f16.js +0 -0
  981. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7694.1cbff84dccb512476b7c.js +0 -0
  982. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7741.2ad1372a5862c4522be3.js +0 -0
  983. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7756.93d0ab41829355a147ab.js +0 -0
  984. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7769.d39df7673ee2660a9ac4.js +0 -0
  985. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7803.0c8929610218552319bf.js +0 -0
  986. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7856.dd9523e57bed80f1f694.js +0 -0
  987. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7879.5c485d200dc01b6f43ff.js +0 -0
  988. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/7881.c5a234ce171f347c94e2.js +0 -0
  989. /mito_ai-0.1.36/venv/share/jupyter/lab/static/7990.0d774450b53727ab32d5.js.LICENSE.txt → /mito_ai-0.1.38/venv/share/jupyter/lab/static/7990.01eaa552261b6e12a74a.js.LICENSE.txt +0 -0
  990. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/79d088064beb3826054f.eot +0 -0
  991. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8038.aea19fb961abd87d6255.js +0 -0
  992. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/805.2a0b8ac50aa8e6ab096f.js +0 -0
  993. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8103.ed2b21471519b58a3d73.js +0 -0
  994. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8217.801fbb0b549a74238760.js +0 -0
  995. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8232.e31d5021e77a9b5215d6.js +0 -0
  996. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8313.aac706f5036a7209b3a8.js +0 -0
  997. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8326.9dda93079a9e4f1b9be6.js +0 -0
  998. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8354.94077232b086a13541cc.js +0 -0
  999. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8368.c75a4b32ae45ec88465d.js +0 -0
  1000. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8391.e5fb2e35cced405eb819.js +0 -0
  1001. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/84.fe0a55d7756c37585fb4.js +0 -0
  1002. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8418.42e29778d4b49fb54e8e.js +0 -0
  1003. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8493.3b6106e45d5661438d8e.js +0 -0
  1004. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8537.21b8b9ae0d81ae264499.js +0 -0
  1005. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8606.bc1b0136e61d173913cd.js +0 -0
  1006. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/867.e814bf26fbfc77fc4f16.js +0 -0
  1007. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/870673df72e70f87c91a.woff +0 -0
  1008. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/874.fbd3ae653c7337f3425b.js +0 -0
  1009. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8753.56da17175b663d61f9d3.js +0 -0
  1010. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8778.a3883f9acac5a903d6be.js +0 -0
  1011. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8779.6eebdb56785e3d38a457.js +0 -0
  1012. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8786.a2bc3dfc1ea13c04ba94.js +0 -0
  1013. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8786.a2bc3dfc1ea13c04ba94.js.LICENSE.txt +0 -0
  1014. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8816.d7ec52fb31e9c6749593.js +0 -0
  1015. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8830.d5bb102ed8737ffe38cb.js +0 -0
  1016. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8855.b17b9969fce42d0398e4.js +0 -0
  1017. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/88b98cad3688915e50da.woff +0 -0
  1018. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/89.933673451ca4a51053cb.js +0 -0
  1019. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8915.ab253990b1581460b255.js +0 -0
  1020. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/898.ed04189e15f0a3781fb1.js +0 -0
  1021. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8ea8791754915a898a31.woff2 +0 -0
  1022. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/8ea8dbb1b02e6f730f55.woff +0 -0
  1023. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9023.2ff687d7ff50df3719fc.js +0 -0
  1024. /mito_ai-0.1.36/venv/share/jupyter/lab/static/9085.93df3ddfd17e1e45d82c.js.LICENSE.txt → /mito_ai-0.1.38/venv/share/jupyter/lab/static/9085.5a959b5878e7afd8a878.js.LICENSE.txt +0 -0
  1025. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9123.501219cd782693d6539f.js +0 -0
  1026. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9136.8f4cc6ecadcf250fd8ac.js +0 -0
  1027. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9311.ad0012965aa52db7a3e3.js +0 -0
  1028. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9329.1683d45b6478b7c81a24.js +0 -0
  1029. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9359.34d1b961b733676193cb.js +0 -0
  1030. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9400.90fd1d2212781c80b587.js +0 -0
  1031. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9474.01b4e1d1e3376f4a5919.js +0 -0
  1032. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9517.7056cafdf1da3a136d45.js +0 -0
  1033. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9572.f91bbaa33e932d524f8f.js +0 -0
  1034. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/961.29c067b15a524e556eed.js +0 -0
  1035. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/961.29c067b15a524e556eed.js.LICENSE.txt +0 -0
  1036. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9652.a8d2e5854bcae4d40041.js +0 -0
  1037. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9674eb1bd55047179038.svg +0 -0
  1038. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9746.c7e86b432363dfd28caa.js +0 -0
  1039. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9834b82ad26e2a37583d.woff2 +0 -0
  1040. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9881.37d189ff085cb3468683.js +0 -0
  1041. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/9890.75ea8024e2c1c49c89a3.js +0 -0
  1042. /mito_ai-0.1.36/venv/share/jupyter/lab/static/9892.6d289e7baed8c64d88e2.js.LICENSE.txt → /mito_ai-0.1.38/venv/share/jupyter/lab/static/9892.1c3a710069391fd93b5d.js.LICENSE.txt +0 -0
  1043. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/a009bea404f7a500ded4.woff +0 -0
  1044. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/a3b9817780214caf01e8.svg +0 -0
  1045. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/af04542b29eaac04550a.woff +0 -0
  1046. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/af6397503fcefbd61397.ttf +0 -0
  1047. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/af96f67d7accf5fd2a4a.woff +0 -0
  1048. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/b418136e3b384baaadec.woff +0 -0
  1049. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/be0a084962d8066884f7.svg +0 -0
  1050. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/bootstrap.js +0 -0
  1051. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/c49810b53ecc0d87d802.woff +0 -0
  1052. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/c56da8d69f1a0208b8e0.woff +0 -0
  1053. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/cb9e9e693192413cde2b.woff +0 -0
  1054. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/cda59d6efffa685830fd.ttf +0 -0
  1055. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/e4299464e7b012968eed.eot +0 -0
  1056. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/e42a88444448ac3d6054.woff2 +0 -0
  1057. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/e8711bbb871afd8e9dea.ttf +0 -0
  1058. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/f9217f66874b0c01cd8c.woff +0 -0
  1059. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/fc6ddf5df402b263cfb1.woff +0 -0
  1060. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/index.out.js +0 -0
  1061. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/static/style.js +0 -0
  1062. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.css +0 -0
  1063. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-extension/index.js +0 -0
  1064. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.css +0 -0
  1065. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/themes/@jupyterlab/theme-dark-high-contrast-extension/index.js +0 -0
  1066. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.css +0 -0
  1067. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.js +0 -0
  1068. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/install.json +0 -0
  1069. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/package.json +0 -0
  1070. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js +0 -0
  1071. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/747.67662283a5707eeb4d4c.js +0 -0
  1072. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/remoteEntry.5cbb9d2323598fbda535.js +0 -0
  1073. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/style.js +0 -0
  1074. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/jupyterlab_pygments/static/third-party-licenses.json +0 -0
  1075. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/mito_ai/static/style.js +0 -0
  1076. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js +0 -0
  1077. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_semver_index_js.9795f79265ddb416864b.js.map +0 -0
  1078. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js +0 -0
  1079. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/labextensions/mito_ai/static/vendors-node_modules_vscode-diff_dist_index_js.ea55f1f9346638aafbcf.js.map +0 -0
  1080. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/asciidoc/conf.json +0 -0
  1081. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2 +0 -0
  1082. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/base/cell_id_anchor.j2 +0 -0
  1083. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/base/celltags.j2 +0 -0
  1084. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/base/display_priority.j2 +0 -0
  1085. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2 +0 -0
  1086. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/base/mathjax.html.j2 +0 -0
  1087. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/base/null.j2 +0 -0
  1088. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/basic/conf.json +0 -0
  1089. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/basic/index.html.j2 +0 -0
  1090. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/classic/base.html.j2 +0 -0
  1091. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/classic/conf.json +0 -0
  1092. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/classic/index.html.j2 +0 -0
  1093. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/classic/static/style.css +0 -0
  1094. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/compatibility/display_priority.tpl +0 -0
  1095. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/compatibility/full.tpl +0 -0
  1096. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/base.html.j2 +0 -0
  1097. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/conf.json +0 -0
  1098. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/index.html.j2 +0 -0
  1099. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/mermaidjs.html.j2 +0 -0
  1100. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/static/index.css +0 -0
  1101. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/static/theme-dark.css +0 -0
  1102. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/lab/static/theme-light.css +0 -0
  1103. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/base.tex.j2 +0 -0
  1104. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/conf.json +0 -0
  1105. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/display_priority.j2 +0 -0
  1106. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2 +0 -0
  1107. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/index.tex.j2 +0 -0
  1108. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/null.j2 +0 -0
  1109. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/report.tex.j2 +0 -0
  1110. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2 +0 -0
  1111. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2 +0 -0
  1112. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2 +0 -0
  1113. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2 +0 -0
  1114. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/latex/style_python.tex.j2 +0 -0
  1115. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/markdown/conf.json +0 -0
  1116. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/markdown/index.md.j2 +0 -0
  1117. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/python/conf.json +0 -0
  1118. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/python/index.py.j2 +0 -0
  1119. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/reveal/base.html.j2 +0 -0
  1120. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/reveal/cellslidedata.j2 +0 -0
  1121. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/reveal/conf.json +0 -0
  1122. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/reveal/index.html.j2 +0 -0
  1123. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css +0 -0
  1124. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/rst/conf.json +0 -0
  1125. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/rst/index.rst.j2 +0 -0
  1126. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/script/conf.json +0 -0
  1127. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/script/script.j2 +0 -0
  1128. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/webpdf/conf.json +0 -0
  1129. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/jupyter/nbconvert/templates/webpdf/index.pdf.j2 +0 -0
  1130. {mito_ai-0.1.36 → mito_ai-0.1.38}/venv/share/man/man1/ipython.1 +0 -0
  1131. {mito_ai-0.1.36 → mito_ai-0.1.38}/yarn.lock +0 -0
@@ -0,0 +1,218 @@
1
+ Metadata-Version: 2.4
2
+ Name: mito_ai
3
+ Version: 0.1.38
4
+ Summary: AI chat for JupyterLab
5
+ Project-URL: Homepage, https://trymito.io
6
+ Project-URL: Bug Tracker, https://github.com/mito-ds/monorepo/issues
7
+ Project-URL: Repository, https://github.com/mito-ds/monorepo
8
+ Author-email: Aaron Diamond-Reivich <aaron@sagacollab.com>
9
+ License: Copyright (c) 2020-2024 Saga Inc.
10
+
11
+ See the LICENSE.txt file at the root of this monorepo for licensing information.
12
+ License-File: LICENSE
13
+ Keywords: jupyter,jupyterlab,jupyterlab-extension
14
+ Classifier: Framework :: Jupyter
15
+ Classifier: Framework :: Jupyter :: JupyterLab
16
+ Classifier: Framework :: Jupyter :: JupyterLab :: 4
17
+ Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
18
+ Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
19
+ Classifier: License :: OSI Approved :: BSD License
20
+ Classifier: Programming Language :: Python
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Requires-Python: >=3.9
27
+ Requires-Dist: analytics-python
28
+ Requires-Dist: anthropic
29
+ Requires-Dist: google-genai
30
+ Requires-Dist: jinja2>=3.0.3
31
+ Requires-Dist: jupyterlab<5,>=4.1.0
32
+ Requires-Dist: openai>=1.0.0
33
+ Requires-Dist: pipreqs
34
+ Requires-Dist: pydantic
35
+ Requires-Dist: requests>=2.25.0
36
+ Requires-Dist: sqlalchemy
37
+ Requires-Dist: tornado>=6.2.0
38
+ Requires-Dist: traitlets
39
+ Provides-Extra: deploy
40
+ Requires-Dist: hatch-jupyter-builder>=0.5; extra == 'deploy'
41
+ Requires-Dist: hatch-nodejs-version>=0.3.2; extra == 'deploy'
42
+ Requires-Dist: hatchling>=1.27.0; extra == 'deploy'
43
+ Requires-Dist: twine>=4.0.0; extra == 'deploy'
44
+ Provides-Extra: test
45
+ Requires-Dist: mypy>=1.8.0; extra == 'test'
46
+ Requires-Dist: pytest-asyncio==0.25.3; extra == 'test'
47
+ Requires-Dist: pytest==8.3.4; extra == 'test'
48
+ Requires-Dist: types-requests>=2.25.0; extra == 'test'
49
+ Requires-Dist: types-setuptools; extra == 'test'
50
+ Requires-Dist: types-tornado>=5.1.1; extra == 'test'
51
+ Description-Content-Type: text/markdown
52
+
53
+ # mito_ai
54
+
55
+ [![Github Actions Status](/workflows/Build/badge.svg)](/actions/workflows/build.yml)
56
+
57
+ AI chat for JupyterLab. This codebase contains two main components:
58
+ 1. A Jupyter server extension that handles the backend logic for the chat.
59
+ 2. Several JupyterLab extensions that handle the frontend logic for interacting with the AI, including the chat sidebar and the error message rendermime.
60
+
61
+ ## Requirements
62
+
63
+ - JupyterLab >= 4.0.0
64
+
65
+ ## Install
66
+
67
+ To install the extension, execute:
68
+
69
+ ```bash
70
+ pip install mito-ai
71
+ ```
72
+
73
+ ## Configuration
74
+
75
+ This extension has two AI providers; OpenAI and Mito (calling OpenAI).
76
+ Mito is the fallback but the number of request is limited for free tier.
77
+ To use OpenAI directly, you will to create an API key on https://platform.openai.com/docs/overview.
78
+ Then set the environment variable `OPENAI_API_KEY` with that key.
79
+
80
+ The OpenAI model can be configured with 1 parameters:
81
+ - `OpenAIProvider.model`: Name of the AI model; default _gpt-4o-mini_.
82
+
83
+ You can set those parameters through command line when starting JupyterLab; e.g.
84
+
85
+ ```sh
86
+ jupyter lab --OpenAIProvider.max_completion_tokens 20 --OpenAIProvider.temperature 1.5
87
+ ```
88
+
89
+ > If a value is incorrect, an error message will be displayed in the terminal logs.
90
+
91
+ ## Uninstall
92
+
93
+ To remove the extension, execute:
94
+
95
+ ```bash
96
+ pip uninstall mito-ai
97
+ ```
98
+
99
+ ## Contributing
100
+
101
+ ### Development install
102
+
103
+ To ensure consistent package management, please use `jlpm` instead of `npm` for this project.
104
+
105
+ Note: You will need NodeJS to build the extension package.
106
+
107
+ The `jlpm` command is JupyterLab's pinned version of
108
+ [yarn](https://yarnpkg.com/) that is installed with JupyterLab.
109
+
110
+ ```bash
111
+ # Clone the repo to your local environment
112
+ # Change directory to the mito-ai directory
113
+
114
+ # Required to deal with Yarn 3 workspace rules
115
+ touch yarn.lock
116
+
117
+ # Install package in development mode
118
+ pip install -e ".[test]"
119
+
120
+ # Install the node modules
121
+ jlpm install
122
+
123
+ # Build the extension
124
+ jlpm build
125
+
126
+ # Link your development version of the extension with JupyterLab
127
+ jupyter labextension develop . --overwrite
128
+
129
+ # Start the jupyter server extension for development
130
+ jupyter server extension enable --py mito_ai
131
+
132
+ # Watch the source directory in one terminal, automatically rebuilding when needed
133
+ # In case of Error: If this command fails because the lib directory was not created (the error will say something like
134
+ # unable to find main entry point) then run `jlpm run clean:lib` first to get rid of the old buildcache
135
+ # that might be preventing a new lib directory from getting created.
136
+ jlpm watch
137
+ ```
138
+
139
+ Then, in a new terminal, run:
140
+
141
+ ```bash
142
+ # Run JupyterLab in another terminal
143
+ jupyter lab --autoreload
144
+ ```
145
+
146
+ With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. With the `--autoreload` flag, you don't need to refresh JupyterLab to load the change in your browser. It will launch a new window each time you save a change to the backend.
147
+
148
+ By default, the `jlpm build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
149
+
150
+ ```bash
151
+ jupyter lab build --minimize=False
152
+ ```
153
+
154
+ ### Development uninstall
155
+
156
+ ```bash
157
+ pip uninstall mito-ai
158
+ ```
159
+
160
+ In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
161
+ command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
162
+ folder is located. Then you can remove the symlink named `mito-ai` within that folder.
163
+
164
+ ### Testing the extension
165
+
166
+ #### Integration tests
167
+
168
+ Integration tests for mito-ai are written using Playwright and Gelata in the mito/tests directory.
169
+
170
+ To run these tests, follow the directions in the tests/README.md file.
171
+
172
+ #### Backend Unit tests
173
+
174
+ Backend tests for mito-ai are written using pytest in the mito/mito-ai/mito_ai/tests directory.
175
+
176
+ To run the pytests, just run `pytest` in the mito-ai directory.
177
+
178
+ #### Backend Mypy tests
179
+
180
+ To run the mypy tests, just run `mypy mito_ai/ --ignore-missing-imports` in the mito-ai directory.
181
+
182
+ #### Frontend Unit tests
183
+
184
+ Frontend unit tests for mito-ai are written using Jest in the mito/mito-ai/src/tests directory.
185
+
186
+ To run the Jest tests, just run `npm test` in the mito-ai directory.
187
+
188
+ #### Frontend Tests
189
+
190
+ Frontend tests for mito-ai are written using Playwright and Gelata in the mito/tests directory. See the [tests/README.md](tests/README.md) file for more information.
191
+
192
+ #### Frontend Linting
193
+
194
+ Frontend linting for mito-ai is done using ESLint in the mito-ai directory.
195
+
196
+ To run the ESLint tests, just run `jlpm eslint` in the mito-ai directory.
197
+
198
+ #### Performance Tests
199
+
200
+ Performance tests for mito-ai are written using pytest in the mito-ai/tests directory.
201
+
202
+ To run the performance tests, just run `python -m pytest mito_ai/tests/performance_test.py -v -s` in the mito-ai directory.
203
+
204
+ Note that you'll have to edit `open_ai_utils.py`, specifically the `is_running_test` condition.
205
+
206
+ #### Running Databases
207
+
208
+ To ensure reproducibility, databases, like Postgres, are created using Docker. To run:
209
+
210
+ ```bash
211
+ docker-compose -f mito_ai/tests/docker/postgres.yml up
212
+ ```
213
+
214
+ When you're done, stop and remove the container and its volumes with:
215
+
216
+ ```bash
217
+ docker-compose -f mito_ai/tests/docker/postgres.yml down -v
218
+ ```
@@ -0,0 +1,84 @@
1
+ # Copyright (c) Saga Inc.
2
+ # Distributed under the terms of the GNU Affero General Public License v3.0 License.
3
+
4
+ from typing import List, Dict
5
+ from jupyter_server.utils import url_path_join
6
+ from mito_ai.completions.handlers import CompletionHandler
7
+ from mito_ai.completions.providers import OpenAIProvider
8
+ from mito_ai.app_builder.handlers import AppBuilderHandler
9
+ from mito_ai.streamlit_preview.handlers import StreamlitPreviewHandler
10
+ from mito_ai.log.urls import get_log_urls
11
+ from mito_ai.version_check import VersionCheckHandler
12
+ from mito_ai.db.urls import get_db_urls
13
+ from mito_ai.settings.urls import get_settings_urls
14
+ from mito_ai.rules.urls import get_rules_urls
15
+ from mito_ai.auth.urls import get_auth_urls
16
+ from mito_ai.streamlit_preview.urls import get_streamlit_preview_urls
17
+ try:
18
+ from _version import __version__
19
+ except ImportError:
20
+ # Fallback when using the package in dev mode without installing in editable mode with pip. It is highly recommended to install
21
+ # the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
22
+ import warnings
23
+
24
+ warnings.warn("Importing 'mito_ai' outside a proper installation.")
25
+ __version__ = "dev"
26
+
27
+ def _jupyter_labextension_paths() -> List[Dict[str, str]]:
28
+ return [{"src": "labextension", "dest": "mito_ai"}]
29
+
30
+
31
+ def _jupyter_server_extension_points() -> List[Dict[str, str]]:
32
+ """
33
+ Returns a list of dictionaries with metadata describing
34
+ where to find the `_load_jupyter_server_extension` function.
35
+ """
36
+ return [{"module": "mito_ai"}]
37
+
38
+
39
+ # Jupyter Server is the backend used by JupyterLab. A sever extension lets
40
+ # us add new API's to the backend, so we can do some processing that we don't
41
+ # want to exist in the users's javascript.
42
+ # For a further explanation of the Jupyter architecture watch the first 35 minutes
43
+ # of this video: https://www.youtube.com/watch?v=9_-siU-_XoI
44
+ def _load_jupyter_server_extension(server_app) -> None: # type: ignore
45
+ host_pattern = ".*$"
46
+ web_app = server_app.web_app
47
+ base_url = web_app.settings["base_url"]
48
+
49
+ open_ai_provider = OpenAIProvider(config=server_app.config)
50
+
51
+ # WebSocket handlers
52
+ handlers = [
53
+ (
54
+ url_path_join(base_url, "mito-ai", "completions"),
55
+ CompletionHandler,
56
+ {"llm": open_ai_provider},
57
+ ),
58
+ (
59
+ url_path_join(base_url, "mito-ai", "app-builder"),
60
+ AppBuilderHandler,
61
+ {}
62
+ ),
63
+ (
64
+ url_path_join(base_url, "mito-ai", "streamlit-preview"),
65
+ StreamlitPreviewHandler,
66
+ {}
67
+ ),
68
+ (
69
+ url_path_join(base_url, "mito-ai", "version-check"),
70
+ VersionCheckHandler,
71
+ {},
72
+ )
73
+ ]
74
+
75
+ # REST API endpoints
76
+ handlers.extend(get_db_urls(base_url)) # type: ignore
77
+ handlers.extend(get_settings_urls(base_url)) # type: ignore
78
+ handlers.extend(get_rules_urls(base_url)) # type: ignore
79
+ handlers.extend(get_log_urls(base_url, open_ai_provider.key_type)) # type: ignore
80
+ handlers.extend(get_auth_urls(base_url)) # type: ignore
81
+ handlers.extend(get_streamlit_preview_urls(base_url)) # type: ignore
82
+
83
+ web_app.add_handlers(host_pattern, handlers)
84
+ server_app.log.info("Loaded the mito_ai server extension")
@@ -0,0 +1,4 @@
1
+ # This file is auto-generated by Hatchling. As such, do not:
2
+ # - modify
3
+ # - track in version control e.g. be sure to add to .gitignore
4
+ __version__ = VERSION = '0.1.38'
@@ -0,0 +1,250 @@
1
+ # Copyright (c) Saga Inc.
2
+ # Distributed under the terms of the GNU Affero General Public License v3.0 License.
3
+
4
+ import json
5
+ import anthropic
6
+ from typing import Dict, Any, Optional, Tuple, Union, Callable, List, cast
7
+
8
+ from anthropic.types import Message, MessageParam
9
+ from mito_ai.completions.models import CompletionError, ResponseFormatInfo, CompletionReply, CompletionStreamChunk, CompletionItem, MessageType
10
+ from mito_ai.utils.mito_server_utils import ProviderCompletionException
11
+ from openai.types.chat import ChatCompletionMessageParam
12
+ from mito_ai.utils.anthropic_utils import get_anthropic_completion_from_mito_server, stream_anthropic_completion_from_mito_server, get_anthropic_completion_function_params
13
+
14
+ # Max tokens is a required parameter for the Anthropic API.
15
+ # We set it to a high number so that we can edit large code cells
16
+ # 8192 is the maximum allowed number of output tokens for claude-3-5-haiku-20241022
17
+ MAX_TOKENS = 8_000
18
+
19
+ def extract_and_parse_anthropic_json_response(response: Message) -> Union[object, Any]:
20
+ """
21
+ Extracts and parses the JSON response from the Claude API.
22
+ """
23
+ try:
24
+ # Check for tool use in the response
25
+ for content_block in response.content:
26
+ if content_block.type == "tool_use" and content_block.name == "agent_response":
27
+ result = content_block.input
28
+ return result
29
+
30
+ # If no tool use was found, try to parse the text response
31
+ text_response = None
32
+ for content_block in response.content:
33
+ if content_block.type == "text":
34
+ text_response = content_block.text
35
+ break
36
+
37
+ if text_response:
38
+ # Try to extract JSON from the text response
39
+ import re
40
+ json_pattern = r'(\{.*\})'
41
+ match = re.search(json_pattern, text_response, re.DOTALL)
42
+ if match:
43
+ try:
44
+ json_response = json.loads(match.group(0))
45
+ return json_response
46
+ except json.JSONDecodeError:
47
+ pass
48
+
49
+ raise Exception("No valid AgentResponse format found in the response")
50
+ except Exception as e:
51
+ raise Exception(f"Failed to parse response: {e}")
52
+
53
+
54
+ def get_anthropic_system_prompt_and_messages(messages: List[ChatCompletionMessageParam]) -> Tuple[
55
+ Union[str, anthropic.NotGiven], List[MessageParam]]:
56
+ """
57
+ Convert a list of OpenAI messages to a list of Anthropic messages.
58
+ """
59
+
60
+ system_prompt: Union[str, anthropic.NotGiven] = anthropic.NotGiven()
61
+ anthropic_messages: List[MessageParam] = []
62
+
63
+ for message in messages:
64
+ if 'content' not in message:
65
+ continue
66
+
67
+ # We assume that the conversation only has one system message.
68
+ # Or if there are multiple, we take the last one.
69
+ if message['role'] == 'system':
70
+ system_prompt = str(message['content'])
71
+
72
+ # Construct the messages for the user and assistant in Anthropic format.
73
+ if message['role'] == 'user':
74
+ content = message['content']
75
+
76
+ # Handle mixed content (text + images)
77
+ if isinstance(content, list):
78
+ anthropic_content = []
79
+
80
+ for item in content:
81
+ if isinstance(item, dict):
82
+ item_dict = cast(Dict[str, Any], item)
83
+ if item_dict.get('type') == 'text':
84
+ # Add text content
85
+ text_content = item_dict.get('text', '')
86
+ anthropic_content.append({
87
+ "type": "text",
88
+ "text": text_content
89
+ })
90
+ elif item_dict.get('type') == 'image_url':
91
+ # Convert OpenAI image format to Anthropic format
92
+ image_url_obj = item_dict.get('image_url', {})
93
+ if isinstance(image_url_obj, dict):
94
+ image_url = image_url_obj.get('url', '')
95
+ else:
96
+ image_url = str(image_url_obj)
97
+
98
+ # Extract media type and base64 data
99
+ if image_url.startswith('data:'):
100
+ # Format: data:image/png;base64,<base64_data>
101
+ header, base64_data = image_url.split(',', 1)
102
+ media_type = header.split(';')[0].split(':')[1] # Extract image/png or image/jpeg
103
+ else:
104
+ # If it's not a data URL, assume it's direct base64 and default to image/png
105
+ media_type = "image/png"
106
+ base64_data = image_url
107
+
108
+ anthropic_content.append({
109
+ "type": "image",
110
+ "source": {
111
+ "type": "base64",
112
+ "media_type": media_type,
113
+ "data": base64_data
114
+ }
115
+ })
116
+
117
+ anthropic_messages.append(MessageParam(role='user', content=cast(Any, anthropic_content)))
118
+ else:
119
+ # Handle simple text content
120
+ anthropic_messages.append(MessageParam(role='user', content=str(content)))
121
+
122
+ elif message['role'] == 'assistant':
123
+ anthropic_messages.append(MessageParam(role='assistant', content=str(message['content'])))
124
+
125
+ return system_prompt, anthropic_messages
126
+
127
+
128
+ class AnthropicClient:
129
+ """
130
+ A client for interacting with the Anthropic API or the Mito server fallback.
131
+ """
132
+
133
+ def __init__(self, api_key: Optional[str], timeout: int = 30, max_retries: int = 1):
134
+ self.api_key = api_key
135
+ self.timeout = timeout
136
+ self.max_retries = max_retries
137
+ self.client: Optional[anthropic.Anthropic]
138
+ if api_key:
139
+ self.client = anthropic.Anthropic(api_key=api_key)
140
+ else:
141
+ self.client = None
142
+
143
+ async def request_completions(
144
+ self, messages: List[ChatCompletionMessageParam],
145
+ model: str,
146
+ response_format_info: Optional[ResponseFormatInfo] = None,
147
+ message_type: MessageType = MessageType.CHAT
148
+ ) -> Any:
149
+ """
150
+ Get a response from Claude or the Mito server that adheres to the AgentResponse format.
151
+ """
152
+ anthropic_system_prompt, anthropic_messages = get_anthropic_system_prompt_and_messages(messages)
153
+
154
+ provider_data = get_anthropic_completion_function_params(
155
+ message_type=message_type,
156
+ model=model,
157
+ messages=anthropic_messages,
158
+ max_tokens=MAX_TOKENS,
159
+ temperature=0,
160
+ system=anthropic_system_prompt,
161
+ stream=None,
162
+ response_format_info=response_format_info
163
+ )
164
+
165
+ if self.api_key:
166
+ # Unpack provider_data for direct API call
167
+ assert self.client is not None
168
+ response = self.client.messages.create(**provider_data)
169
+ if provider_data.get("tool_choice") is not None:
170
+ result = extract_and_parse_anthropic_json_response(response)
171
+ return json.dumps(result) if not isinstance(result, str) else result
172
+ else:
173
+ content = response.content
174
+ if content[0].type == "text":
175
+ return content[0].text
176
+ else:
177
+ return ""
178
+ else:
179
+ # Only pass provider_data to the server
180
+ response = await get_anthropic_completion_from_mito_server(
181
+ model=provider_data["model"],
182
+ max_tokens=provider_data["max_tokens"],
183
+ temperature=provider_data["temperature"],
184
+ system=provider_data["system"],
185
+ messages=provider_data["messages"],
186
+ tools=provider_data.get("tools"),
187
+ tool_choice=provider_data.get("tool_choice"),
188
+ message_type=message_type
189
+ )
190
+ return response
191
+
192
+ async def stream_completions(self, messages: List[ChatCompletionMessageParam], model: str, message_id: str, message_type: MessageType,
193
+ reply_fn: Callable[[Union[CompletionReply, CompletionStreamChunk]], None]) -> str:
194
+ try:
195
+ anthropic_system_prompt, anthropic_messages = get_anthropic_system_prompt_and_messages(messages)
196
+ accumulated_response = ""
197
+
198
+ if self.api_key:
199
+ assert self.client is not None
200
+ stream = self.client.messages.create(
201
+ model=model,
202
+ max_tokens=MAX_TOKENS,
203
+ temperature=0,
204
+ system=anthropic_system_prompt,
205
+ messages=anthropic_messages,
206
+ stream=True
207
+ )
208
+
209
+
210
+ for chunk in stream:
211
+ if chunk.type == "content_block_delta" and chunk.delta.type == "text_delta":
212
+ content = chunk.delta.text
213
+ accumulated_response += content
214
+
215
+ is_finished = chunk.type == "message_stop"
216
+
217
+ reply_fn(CompletionStreamChunk(
218
+ parent_id=message_id,
219
+ chunk=CompletionItem(
220
+ content=content,
221
+ isIncomplete=not is_finished,
222
+ token=message_id,
223
+ ),
224
+ done=is_finished,
225
+ ))
226
+
227
+ else:
228
+ async for stram_chunk in stream_anthropic_completion_from_mito_server(
229
+ model=model,
230
+ max_tokens=MAX_TOKENS,
231
+ temperature=0,
232
+ system=anthropic_system_prompt,
233
+ messages=anthropic_messages,
234
+ stream=True,
235
+ message_type=message_type,
236
+ reply_fn=reply_fn,
237
+ message_id=message_id
238
+ ):
239
+ accumulated_response += stram_chunk
240
+
241
+ return accumulated_response
242
+
243
+ except anthropic.RateLimitError:
244
+ raise Exception("Rate limit exceeded. Please try again later or reduce your request frequency.")
245
+
246
+ except Exception as e:
247
+ print(f"Error streaming content: {str(e)}")
248
+ raise e
249
+
250
+