hdsp-jupyter-extension 2.0.6__py3-none-any.whl → 2.0.8__py3-none-any.whl
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.
- agent_server/core/embedding_service.py +67 -46
- agent_server/core/rag_manager.py +31 -17
- agent_server/core/reflection_engine.py +0 -1
- agent_server/core/retriever.py +13 -8
- agent_server/core/vllm_embedding_service.py +243 -0
- agent_server/knowledge/watchdog_service.py +1 -1
- agent_server/langchain/ARCHITECTURE.md +1193 -0
- agent_server/langchain/agent.py +82 -588
- agent_server/langchain/custom_middleware.py +663 -0
- agent_server/langchain/executors/__init__.py +2 -7
- agent_server/langchain/executors/notebook_searcher.py +46 -38
- agent_server/langchain/hitl_config.py +71 -0
- agent_server/langchain/llm_factory.py +166 -0
- agent_server/langchain/logging_utils.py +223 -0
- agent_server/langchain/prompts.py +150 -0
- agent_server/langchain/state.py +16 -6
- agent_server/langchain/tools/__init__.py +19 -0
- agent_server/langchain/tools/file_tools.py +354 -114
- agent_server/langchain/tools/file_utils.py +334 -0
- agent_server/langchain/tools/jupyter_tools.py +18 -18
- agent_server/langchain/tools/lsp_tools.py +264 -0
- agent_server/langchain/tools/resource_tools.py +161 -0
- agent_server/langchain/tools/search_tools.py +198 -216
- agent_server/langchain/tools/shell_tools.py +54 -0
- agent_server/main.py +11 -1
- agent_server/routers/health.py +1 -1
- agent_server/routers/langchain_agent.py +1040 -289
- agent_server/routers/rag.py +8 -3
- hdsp_agent_core/models/rag.py +15 -1
- hdsp_agent_core/prompts/auto_agent_prompts.py +3 -3
- hdsp_agent_core/services/rag_service.py +6 -1
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/build_log.json +1 -1
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/package.json +3 -2
- hdsp_jupyter_extension-2.0.6.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.02d346171474a0fb2dc1.js → hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.8740a527757068814573.js +470 -7
- hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.8740a527757068814573.js.map +1 -0
- hdsp_jupyter_extension-2.0.6.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.a223ea20056954479ae9.js → hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.e4ff4b5779b5e049f84c.js +3196 -441
- hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.e4ff4b5779b5e049f84c.js.map +1 -0
- hdsp_jupyter_extension-2.0.6.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.addf2fa038fa60304aa2.js → hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.020cdb0b864cfaa4e41e.js +9 -7
- hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.020cdb0b864cfaa4e41e.js.map +1 -0
- {hdsp_jupyter_extension-2.0.6.dist-info → hdsp_jupyter_extension-2.0.8.dist-info}/METADATA +2 -1
- {hdsp_jupyter_extension-2.0.6.dist-info → hdsp_jupyter_extension-2.0.8.dist-info}/RECORD +75 -69
- jupyter_ext/__init__.py +18 -0
- jupyter_ext/_version.py +1 -1
- jupyter_ext/handlers.py +1351 -58
- jupyter_ext/labextension/build_log.json +1 -1
- jupyter_ext/labextension/package.json +3 -2
- jupyter_ext/labextension/static/{frontend_styles_index_js.02d346171474a0fb2dc1.js → frontend_styles_index_js.8740a527757068814573.js} +470 -7
- jupyter_ext/labextension/static/frontend_styles_index_js.8740a527757068814573.js.map +1 -0
- jupyter_ext/labextension/static/{lib_index_js.a223ea20056954479ae9.js → lib_index_js.e4ff4b5779b5e049f84c.js} +3196 -441
- jupyter_ext/labextension/static/lib_index_js.e4ff4b5779b5e049f84c.js.map +1 -0
- jupyter_ext/labextension/static/{remoteEntry.addf2fa038fa60304aa2.js → remoteEntry.020cdb0b864cfaa4e41e.js} +9 -7
- jupyter_ext/labextension/static/remoteEntry.020cdb0b864cfaa4e41e.js.map +1 -0
- jupyter_ext/resource_usage.py +180 -0
- jupyter_ext/tests/test_handlers.py +58 -0
- agent_server/langchain/executors/jupyter_executor.py +0 -429
- agent_server/langchain/middleware/__init__.py +0 -36
- agent_server/langchain/middleware/code_search_middleware.py +0 -278
- agent_server/langchain/middleware/error_handling_middleware.py +0 -338
- agent_server/langchain/middleware/jupyter_execution_middleware.py +0 -301
- agent_server/langchain/middleware/rag_middleware.py +0 -227
- agent_server/langchain/middleware/validation_middleware.py +0 -240
- hdsp_jupyter_extension-2.0.6.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.02d346171474a0fb2dc1.js.map +0 -1
- hdsp_jupyter_extension-2.0.6.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.a223ea20056954479ae9.js.map +0 -1
- hdsp_jupyter_extension-2.0.6.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.addf2fa038fa60304aa2.js.map +0 -1
- jupyter_ext/labextension/static/frontend_styles_index_js.02d346171474a0fb2dc1.js.map +0 -1
- jupyter_ext/labextension/static/lib_index_js.a223ea20056954479ae9.js.map +0 -1
- jupyter_ext/labextension/static/remoteEntry.addf2fa038fa60304aa2.js.map +0 -1
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/etc/jupyter/jupyter_server_config.d/hdsp_jupyter_extension.json +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/install.json +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/style.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js.24edcc52a1c014a8a5f0.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js.24edcc52a1c014a8a5f0.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.19ecf6babe00caff6b8a.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.19ecf6babe00caff6b8a.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.1f5038488cdfd8b3a85d.js +0 -0
- {hdsp_jupyter_extension-2.0.6.data → hdsp_jupyter_extension-2.0.8.data}/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.1f5038488cdfd8b3a85d.js.map +0 -0
- {hdsp_jupyter_extension-2.0.6.dist-info → hdsp_jupyter_extension-2.0.8.dist-info}/WHEEL +0 -0
- {hdsp_jupyter_extension-2.0.6.dist-info → hdsp_jupyter_extension-2.0.8.dist-info}/licenses/LICENSE +0 -0
|
@@ -160,7 +160,7 @@ __webpack_require__.d(exports, {
|
|
|
160
160
|
/******/ // This function allow to reference async chunks
|
|
161
161
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
162
162
|
/******/ // return url for filenames based on template
|
|
163
|
-
/******/ return "" + chunkId + "." + {"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js":"24edcc52a1c014a8a5f0","vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195":"e2553aab0c3963b83dd7","vendors-node_modules_mui_material_utils_createSvgIcon_js":"1f5038488cdfd8b3a85d","lib_index_js":"
|
|
163
|
+
/******/ return "" + chunkId + "." + {"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js":"24edcc52a1c014a8a5f0","vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195":"e2553aab0c3963b83dd7","vendors-node_modules_mui_material_utils_createSvgIcon_js":"1f5038488cdfd8b3a85d","lib_index_js":"e4ff4b5779b5e049f84c","frontend_styles_index_js":"8740a527757068814573","vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js":"19ecf6babe00caff6b8a","node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80":"c095373419d05e6f141a","vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js":"661fb5836f4978a7c6e1","vendors-node_modules_mui_material_index_js":"985697e0162d8d088ca2","node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81":"61e75fb98ecff46cf836"}[chunkId] + ".js";
|
|
164
164
|
/******/ };
|
|
165
165
|
/******/ })();
|
|
166
166
|
/******/
|
|
@@ -281,7 +281,7 @@ __webpack_require__.d(exports, {
|
|
|
281
281
|
/******/ register("@emotion/react", "11.14.0", () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js"), __webpack_require__.e("vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195"), __webpack_require__.e("vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js"), __webpack_require__.e("webpack_sharing_consume_default_react"), __webpack_require__.e("node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80")]).then(() => (() => (__webpack_require__(/*! ./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js */ "./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js"))))));
|
|
282
282
|
/******/ register("@emotion/styled", "11.14.1", () => (Promise.all([__webpack_require__.e("vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195"), __webpack_require__.e("vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js"), __webpack_require__.e("webpack_sharing_consume_default_react"), __webpack_require__.e("webpack_sharing_consume_default_emotion_react_emotion_react")]).then(() => (() => (__webpack_require__(/*! ./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js */ "./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js"))))));
|
|
283
283
|
/******/ register("@mui/material", "5.18.0", () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js"), __webpack_require__.e("vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195"), __webpack_require__.e("vendors-node_modules_mui_material_index_js"), __webpack_require__.e("vendors-node_modules_mui_material_utils_createSvgIcon_js"), __webpack_require__.e("webpack_sharing_consume_default_react"), __webpack_require__.e("webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f"), __webpack_require__.e("webpack_sharing_consume_default_react-dom")]).then(() => (() => (__webpack_require__(/*! ./node_modules/@mui/material/index.js */ "./node_modules/@mui/material/index.js"))))));
|
|
284
|
-
/******/ register("hdsp-agent", "2.0.
|
|
284
|
+
/******/ register("hdsp-agent", "2.0.8", () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js"), __webpack_require__.e("vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195"), __webpack_require__.e("vendors-node_modules_mui_material_utils_createSvgIcon_js"), __webpack_require__.e("webpack_sharing_consume_default_react"), __webpack_require__.e("webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f"), __webpack_require__.e("lib_index_js")]).then(() => (() => (__webpack_require__(/*! ./lib/index.js */ "./lib/index.js"))))));
|
|
285
285
|
/******/ }
|
|
286
286
|
/******/ break;
|
|
287
287
|
/******/ }
|
|
@@ -439,8 +439,8 @@ __webpack_require__.d(exports, {
|
|
|
439
439
|
/******/ var installedModules = {};
|
|
440
440
|
/******/ var moduleToHandlerMapping = {
|
|
441
441
|
/******/ "webpack/sharing/consume/default/react": () => (loadSingletonVersion("default", "react", false, [1,18,2,0])),
|
|
442
|
-
/******/ "webpack/sharing/consume/default/@emotion/styled/@emotion/styled": () => (loadStrictVersion("default", "@emotion/styled", false, [1,11,3,0], () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js"), __webpack_require__.e("webpack_sharing_consume_default_emotion_react_emotion_react")]).then(() => (() => (__webpack_require__(/*! @emotion/styled */ "./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js"))))))),
|
|
443
442
|
/******/ "webpack/sharing/consume/default/@emotion/react/@emotion/react?98f9": () => (loadStrictVersion("default", "@emotion/react", false, [1,11,4,1], () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js"), __webpack_require__.e("node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81")]).then(() => (() => (__webpack_require__(/*! @emotion/react */ "./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js"))))))),
|
|
443
|
+
/******/ "webpack/sharing/consume/default/@emotion/styled/@emotion/styled": () => (loadStrictVersion("default", "@emotion/styled", false, [1,11,3,0], () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js"), __webpack_require__.e("webpack_sharing_consume_default_emotion_react_emotion_react")]).then(() => (() => (__webpack_require__(/*! @emotion/styled */ "./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js"))))))),
|
|
444
444
|
/******/ "webpack/sharing/consume/default/@jupyterlab/application": () => (loadSingletonVersion("default", "@jupyterlab/application", false, [1,4,5,1])),
|
|
445
445
|
/******/ "webpack/sharing/consume/default/@jupyterlab/apputils": () => (loadSingletonVersion("default", "@jupyterlab/apputils", false, [1,4,6,1])),
|
|
446
446
|
/******/ "webpack/sharing/consume/default/@jupyterlab/notebook": () => (loadSingletonVersion("default", "@jupyterlab/notebook", false, [1,4,5,1])),
|
|
@@ -451,6 +451,7 @@ __webpack_require__.d(exports, {
|
|
|
451
451
|
/******/ "webpack/sharing/consume/default/@jupyterlab/docmanager": () => (loadSingletonVersion("default", "@jupyterlab/docmanager", false, [1,4,5,1])),
|
|
452
452
|
/******/ "webpack/sharing/consume/default/@lumino/widgets": () => (loadSingletonVersion("default", "@lumino/widgets", false, [1,2,3,1,,"alpha",1])),
|
|
453
453
|
/******/ "webpack/sharing/consume/default/@mui/material/@mui/material": () => (loadStrictVersion("default", "@mui/material", false, [1,5,14,0], () => (Promise.all([__webpack_require__.e("vendors-node_modules_mui_material_index_js"), __webpack_require__.e("webpack_sharing_consume_default_react-dom")]).then(() => (() => (__webpack_require__(/*! @mui/material */ "./node_modules/@mui/material/index.js"))))))),
|
|
454
|
+
/******/ "webpack/sharing/consume/default/@jupyterlab/terminal": () => (loadSingletonVersion("default", "@jupyterlab/terminal", false, [1,4,5,1])),
|
|
454
455
|
/******/ "webpack/sharing/consume/default/@emotion/react/@emotion/react?6a66": () => (loadStrictVersion("default", "@emotion/react", false, [1,11,0,0,,"rc",0], () => (Promise.all([__webpack_require__.e("vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js"), __webpack_require__.e("vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js")]).then(() => (() => (__webpack_require__(/*! @emotion/react */ "./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js"))))))),
|
|
455
456
|
/******/ "webpack/sharing/consume/default/react-dom": () => (loadSingletonVersion("default", "react-dom", false, [1,18,2,0]))
|
|
456
457
|
/******/ };
|
|
@@ -460,8 +461,8 @@ __webpack_require__.d(exports, {
|
|
|
460
461
|
/******/ "webpack/sharing/consume/default/react"
|
|
461
462
|
/******/ ],
|
|
462
463
|
/******/ "webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f": [
|
|
463
|
-
/******/ "webpack/sharing/consume/default/@emotion/
|
|
464
|
-
/******/ "webpack/sharing/consume/default/@emotion/
|
|
464
|
+
/******/ "webpack/sharing/consume/default/@emotion/react/@emotion/react?98f9",
|
|
465
|
+
/******/ "webpack/sharing/consume/default/@emotion/styled/@emotion/styled"
|
|
465
466
|
/******/ ],
|
|
466
467
|
/******/ "lib_index_js": [
|
|
467
468
|
/******/ "webpack/sharing/consume/default/@jupyterlab/application",
|
|
@@ -473,7 +474,8 @@ __webpack_require__.d(exports, {
|
|
|
473
474
|
/******/ "webpack/sharing/consume/default/@jupyterlab/launcher",
|
|
474
475
|
/******/ "webpack/sharing/consume/default/@jupyterlab/docmanager",
|
|
475
476
|
/******/ "webpack/sharing/consume/default/@lumino/widgets",
|
|
476
|
-
/******/ "webpack/sharing/consume/default/@mui/material/@mui/material"
|
|
477
|
+
/******/ "webpack/sharing/consume/default/@mui/material/@mui/material",
|
|
478
|
+
/******/ "webpack/sharing/consume/default/@jupyterlab/terminal"
|
|
477
479
|
/******/ ],
|
|
478
480
|
/******/ "webpack_sharing_consume_default_emotion_react_emotion_react": [
|
|
479
481
|
/******/ "webpack/sharing/consume/default/@emotion/react/@emotion/react?6a66"
|
|
@@ -620,4 +622,4 @@ __webpack_require__.d(exports, {
|
|
|
620
622
|
/******/
|
|
621
623
|
/******/ })()
|
|
622
624
|
;
|
|
623
|
-
//# sourceMappingURL=remoteEntry.
|
|
625
|
+
//# sourceMappingURL=remoteEntry.020cdb0b864cfaa4e41e.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remoteEntry.020cdb0b864cfaa4e41e.js","mappings":";;;;;;;;;;;AAAA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,CAAC,E;;;;;;UCpCD;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;;;;;WClCA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,sDAAsD;WACtD,sCAAsC,mGAAmG;WACzI;WACA;WACA;WACA;WACA;WACA,E;;;;;WCzBA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,EAAE;WACF,E;;;;;WCRA;WACA;WACA;WACA,8BAA8B,06BAA06B;WACx8B,E;;;;;WCJA;WACA;WACA;WACA;WACA,GAAG;WACH;WACA;WACA,CAAC,I;;;;;WCPD,wF;;;;;WCAA;WACA;WACA;WACA;WACA,uBAAuB,4BAA4B;WACnD;WACA;WACA;WACA,iBAAiB,oBAAoB;WACrC;WACA,mGAAmG,YAAY;WAC/G;WACA;WACA;WACA;WACA;;WAEA;WACA;WACA;WACA;WACA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,mEAAmE,iCAAiC;WACpG;WACA;WACA;WACA,E;;;;;WCxCA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D,E;;;;;WCNA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,oJAAoJ;WACpJ;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,IAAI,aAAa;WACjB;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,E;;;;;WChDA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,kC;;;;;WClBA;WACA;WACA,WAAW,4BAA4B,iBAAiB,EAAE,qEAAqE;WAC/H;WACA;WACA;WACA,qCAAqC,aAAa,EAAE,wDAAwD,2BAA2B,4BAA4B,2BAA2B,+CAA+C,mCAAmC;WAChR;WACA;WACA;WACA,qBAAqB,8BAA8B,SAAS,sDAAsD,gBAAgB,eAAe,KAAK,6DAA6D,SAAS,SAAS,QAAQ,eAAe,KAAK,eAAe,qGAAqG,WAAW,aAAa;WAC7Y;WACA;WACA;WACA,gBAAgB,8BAA8B,qBAAqB,YAAY,sBAAsB,SAAS,iDAAiD,6FAA6F,WAAW,uBAAuB,2BAA2B,wBAAwB,KAAK,oCAAoC,oBAAoB,wBAAwB,oBAAoB,SAAS,KAAK,yBAAyB,KAAK,gCAAgC,yBAAyB,QAAQ,eAAe,KAAK,eAAe,4DAA4D;WACtoB;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,EAAE,IAAI;WACN;WACA;WACA;WACA;WACA;WACA,EAAE;WACF;WACA;WACA;WACA;WACA;WACA;WACA;WACA,EAAE;WACF;WACA;WACA;WACA;WACA;WACA;WACA,EAAE;WACF;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,EAAE;WACF;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,CAAC;;WAED;WACA;WACA;WACA;WACA;WACA;WACA,CAAC;WACD;WACA;WACA;WACA;WACA;WACA;WACA,CAAC;WACD;WACA;WACA;WACA;WACA;WACA;WACA,CAAC;WACD;WACA;WACA;WACA;WACA,CAAC;WACD;WACA;WACA;WACA;WACA;WACA;WACA;WACA,CAAC;WACD;WACA;WACA;WACA;WACA;WACA;WACA;WACA,CAAC;WACD;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,MAAM;WACN,KAAK,WAAW;WAChB;WACA,GAAG;WACH;WACA,C;;;;;WCvMA;;WAEA;WACA;WACA;WACA;WACA;WACA;;WAEA;WACA;WACA;WACA,iCAAiC;;WAEjC;WACA;WACA;WACA,KAAK;WACL;WACA;WACA;WACA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,MAAM;WACN;WACA;WACA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,MAAM,qBAAqB;WAC3B;WACA;WACA;WACA;WACA;WACA;;WAEA;;WAEA;WACA;WACA,4G;;;;;WCrFA,mC;;;;;UEAA;UACA;UACA;UACA","sources":["webpack://hdsp-agent/webpack/container-entry","webpack://hdsp-agent/webpack/bootstrap","webpack://hdsp-agent/webpack/runtime/compat get default export","webpack://hdsp-agent/webpack/runtime/create fake namespace object","webpack://hdsp-agent/webpack/runtime/define property getters","webpack://hdsp-agent/webpack/runtime/ensure chunk","webpack://hdsp-agent/webpack/runtime/get javascript chunk filename","webpack://hdsp-agent/webpack/runtime/global","webpack://hdsp-agent/webpack/runtime/hasOwnProperty shorthand","webpack://hdsp-agent/webpack/runtime/load script","webpack://hdsp-agent/webpack/runtime/make namespace object","webpack://hdsp-agent/webpack/runtime/sharing","webpack://hdsp-agent/webpack/runtime/publicPath","webpack://hdsp-agent/webpack/runtime/consumes","webpack://hdsp-agent/webpack/runtime/jsonp chunk loading","webpack://hdsp-agent/webpack/runtime/nonce","webpack://hdsp-agent/webpack/before-startup","webpack://hdsp-agent/webpack/startup","webpack://hdsp-agent/webpack/after-startup"],"sourcesContent":["var moduleMap = {\n\t\"./index\": () => {\n\t\treturn Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\"), __webpack_require__.e(\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\"), __webpack_require__.e(\"vendors-node_modules_mui_material_utils_createSvgIcon_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react\"), __webpack_require__.e(\"webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f\"), __webpack_require__.e(\"lib_index_js\")]).then(() => (() => ((__webpack_require__(/*! ./lib/index.js */ \"./lib/index.js\")))));\n\t},\n\t\"./extension\": () => {\n\t\treturn Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\"), __webpack_require__.e(\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\"), __webpack_require__.e(\"vendors-node_modules_mui_material_utils_createSvgIcon_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react\"), __webpack_require__.e(\"webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f\"), __webpack_require__.e(\"lib_index_js\")]).then(() => (() => ((__webpack_require__(/*! ./lib/index.js */ \"./lib/index.js\")))));\n\t},\n\t\"./style\": () => {\n\t\treturn __webpack_require__.e(\"frontend_styles_index_js\").then(() => (() => ((__webpack_require__(/*! ./frontend/styles/index.js */ \"./frontend/styles/index.js\")))));\n\t}\n};\nvar get = (module, getScope) => {\n\t__webpack_require__.R = getScope;\n\tgetScope = (\n\t\t__webpack_require__.o(moduleMap, module)\n\t\t\t? moduleMap[module]()\n\t\t\t: Promise.resolve().then(() => {\n\t\t\t\tthrow new Error('Module \"' + module + '\" does not exist in container.');\n\t\t\t})\n\t);\n\t__webpack_require__.R = undefined;\n\treturn getScope;\n};\nvar init = (shareScope, initScope) => {\n\tif (!__webpack_require__.S) return;\n\tvar name = \"default\"\n\tvar oldScope = __webpack_require__.S[name];\n\tif(oldScope && oldScope !== shareScope) throw new Error(\"Container initialization failed as it has already been initialized with a different share scope\");\n\t__webpack_require__.S[name] = shareScope;\n\treturn __webpack_require__.I(name, initScope);\n};\n\n// This exports getters to disallow modifications\n__webpack_require__.d(exports, {\n\tget: () => (get),\n\tinit: () => (init)\n});","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Check if module exists (development only)\n\tif (__webpack_modules__[moduleId] === undefined) {\n\t\tvar e = new Error(\"Cannot find module '\" + moduleId + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n// expose the module cache\n__webpack_require__.c = __webpack_module_cache__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);\nvar leafPrototypes;\n// create a fake namespace object\n// mode & 1: value is a module id, require it\n// mode & 2: merge all properties of value into the ns\n// mode & 4: return value when already ns object\n// mode & 16: return value when it's Promise-like\n// mode & 8|1: behave like require\n__webpack_require__.t = function(value, mode) {\n\tif(mode & 1) value = this(value);\n\tif(mode & 8) return value;\n\tif(typeof value === 'object' && value) {\n\t\tif((mode & 4) && value.__esModule) return value;\n\t\tif((mode & 16) && typeof value.then === 'function') return value;\n\t}\n\tvar ns = Object.create(null);\n\t__webpack_require__.r(ns);\n\tvar def = {};\n\tleafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];\n\tfor(var current = mode & 2 && value; (typeof current == 'object' || typeof current == 'function') && !~leafPrototypes.indexOf(current); current = getProto(current)) {\n\t\tObject.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key])));\n\t}\n\tdef['default'] = () => (value);\n\t__webpack_require__.d(ns, def);\n\treturn ns;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \".\" + {\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\":\"24edcc52a1c014a8a5f0\",\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\":\"e2553aab0c3963b83dd7\",\"vendors-node_modules_mui_material_utils_createSvgIcon_js\":\"1f5038488cdfd8b3a85d\",\"lib_index_js\":\"e4ff4b5779b5e049f84c\",\"frontend_styles_index_js\":\"8740a527757068814573\",\"vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js\":\"19ecf6babe00caff6b8a\",\"node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80\":\"c095373419d05e6f141a\",\"vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js\":\"661fb5836f4978a7c6e1\",\"vendors-node_modules_mui_material_index_js\":\"985697e0162d8d088ca2\",\"node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81\":\"61e75fb98ecff46cf836\"}[chunkId] + \".js\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","var inProgress = {};\nvar dataWebpackPrefix = \"hdsp-agent:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key, chunkId) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => (fn(event)));\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.S = {};\nvar initPromises = {};\nvar initTokens = {};\n__webpack_require__.I = (name, initScope) => {\n\tif(!initScope) initScope = [];\n\t// handling circular init calls\n\tvar initToken = initTokens[name];\n\tif(!initToken) initToken = initTokens[name] = {};\n\tif(initScope.indexOf(initToken) >= 0) return;\n\tinitScope.push(initToken);\n\t// only runs once\n\tif(initPromises[name]) return initPromises[name];\n\t// creates a new share scope if needed\n\tif(!__webpack_require__.o(__webpack_require__.S, name)) __webpack_require__.S[name] = {};\n\t// runs all init snippets from all modules reachable\n\tvar scope = __webpack_require__.S[name];\n\tvar warn = (msg) => {\n\t\tif (typeof console !== \"undefined\" && console.warn) console.warn(msg);\n\t};\n\tvar uniqueName = \"hdsp-agent\";\n\tvar register = (name, version, factory, eager) => {\n\t\tvar versions = scope[name] = scope[name] || {};\n\t\tvar activeVersion = versions[version];\n\t\tif(!activeVersion || (!activeVersion.loaded && (!eager != !activeVersion.eager ? eager : uniqueName > activeVersion.from))) versions[version] = { get: factory, from: uniqueName, eager: !!eager };\n\t};\n\tvar initExternal = (id) => {\n\t\tvar handleError = (err) => (warn(\"Initialization of sharing external failed: \" + err));\n\t\ttry {\n\t\t\tvar module = __webpack_require__(id);\n\t\t\tif(!module) return;\n\t\t\tvar initFn = (module) => (module && module.init && module.init(__webpack_require__.S[name], initScope))\n\t\t\tif(module.then) return promises.push(module.then(initFn, handleError));\n\t\t\tvar initResult = initFn(module);\n\t\t\tif(initResult && initResult.then) return promises.push(initResult['catch'](handleError));\n\t\t} catch(err) { handleError(err); }\n\t}\n\tvar promises = [];\n\tswitch(name) {\n\t\tcase \"default\": {\n\t\t\tregister(\"@emotion/react\", \"11.14.0\", () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\"), __webpack_require__.e(\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\"), __webpack_require__.e(\"vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react\"), __webpack_require__.e(\"node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80\")]).then(() => (() => (__webpack_require__(/*! ./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js */ \"./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js\"))))));\n\t\t\tregister(\"@emotion/styled\", \"11.14.1\", () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\"), __webpack_require__.e(\"vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react\"), __webpack_require__.e(\"webpack_sharing_consume_default_emotion_react_emotion_react\")]).then(() => (() => (__webpack_require__(/*! ./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js */ \"./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js\"))))));\n\t\t\tregister(\"@mui/material\", \"5.18.0\", () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\"), __webpack_require__.e(\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\"), __webpack_require__.e(\"vendors-node_modules_mui_material_index_js\"), __webpack_require__.e(\"vendors-node_modules_mui_material_utils_createSvgIcon_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react\"), __webpack_require__.e(\"webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f\"), __webpack_require__.e(\"webpack_sharing_consume_default_react-dom\")]).then(() => (() => (__webpack_require__(/*! ./node_modules/@mui/material/index.js */ \"./node_modules/@mui/material/index.js\"))))));\n\t\t\tregister(\"hdsp-agent\", \"2.0.8\", () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\"), __webpack_require__.e(\"vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195\"), __webpack_require__.e(\"vendors-node_modules_mui_material_utils_createSvgIcon_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react\"), __webpack_require__.e(\"webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f\"), __webpack_require__.e(\"lib_index_js\")]).then(() => (() => (__webpack_require__(/*! ./lib/index.js */ \"./lib/index.js\"))))));\n\t\t}\n\t\tbreak;\n\t}\n\tif(!promises.length) return initPromises[name] = 1;\n\treturn initPromises[name] = Promise.all(promises).then(() => (initPromises[name] = 1));\n};","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/^blob:/, \"\").replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","var parseVersion = (str) => {\n\t// see webpack/lib/util/semver.js for original code\n\tvar p=p=>{return p.split(\".\").map(p=>{return+p==p?+p:p})},n=/^([^-+]+)?(?:-([^+]+))?(?:\\+(.+))?$/.exec(str),r=n[1]?p(n[1]):[];return n[2]&&(r.length++,r.push.apply(r,p(n[2]))),n[3]&&(r.push([]),r.push.apply(r,p(n[3]))),r;\n}\nvar versionLt = (a, b) => {\n\t// see webpack/lib/util/semver.js for original code\n\ta=parseVersion(a),b=parseVersion(b);for(var r=0;;){if(r>=a.length)return r<b.length&&\"u\"!=(typeof b[r])[0];var e=a[r],n=(typeof e)[0];if(r>=b.length)return\"u\"==n;var t=b[r],f=(typeof t)[0];if(n!=f)return\"o\"==n&&\"n\"==f||(\"s\"==f||\"u\"==n);if(\"o\"!=n&&\"u\"!=n&&e!=t)return e<t;r++}\n}\nvar rangeToString = (range) => {\n\t// see webpack/lib/util/semver.js for original code\n\tvar r=range[0],n=\"\";if(1===range.length)return\"*\";if(r+.5){n+=0==r?\">=\":-1==r?\"<\":1==r?\"^\":2==r?\"~\":r>0?\"=\":\"!=\";for(var e=1,a=1;a<range.length;a++){e--,n+=\"u\"==(typeof(t=range[a]))[0]?\"-\":(e>0?\".\":\"\")+(e=2,t)}return n}var g=[];for(a=1;a<range.length;a++){var t=range[a];g.push(0===t?\"not(\"+o()+\")\":1===t?\"(\"+o()+\" || \"+o()+\")\":2===t?g.pop()+\" \"+g.pop():rangeToString(t))}return o();function o(){return g.pop().replace(/^\\((.+)\\)$/,\"$1\")}\n}\nvar satisfy = (range, version) => {\n\t// see webpack/lib/util/semver.js for original code\n\tif(0 in range){version=parseVersion(version);var e=range[0],r=e<0;r&&(e=-e-1);for(var n=0,i=1,a=!0;;i++,n++){var f,s,g=i<range.length?(typeof range[i])[0]:\"\";if(n>=version.length||\"o\"==(s=(typeof(f=version[n]))[0]))return!a||(\"u\"==g?i>e&&!r:\"\"==g!=r);if(\"u\"==s){if(!a||\"u\"!=g)return!1}else if(a)if(g==s)if(i<=e){if(f!=range[i])return!1}else{if(r?f>range[i]:f<range[i])return!1;f!=range[i]&&(a=!1)}else if(\"s\"!=g&&\"n\"!=g){if(r||i<=e)return!1;a=!1,i--}else{if(i<=e||s<g!=r)return!1;a=!1}else\"s\"!=g&&\"n\"!=g&&(a=!1,i--)}}var t=[],o=t.pop.bind(t);for(n=1;n<range.length;n++){var u=range[n];t.push(1==u?o()|o():2==u?o()&o():u?satisfy(u,version):!o())}return!!o();\n}\nvar exists = (scope, key) => {\n\treturn scope && __webpack_require__.o(scope, key);\n}\nvar get = (entry) => {\n\tentry.loaded = 1;\n\treturn entry.get()\n};\nvar eagerOnly = (versions) => {\n\treturn Object.keys(versions).reduce((filtered, version) => {\n\t\t\tif (versions[version].eager) {\n\t\t\t\tfiltered[version] = versions[version];\n\t\t\t}\n\t\t\treturn filtered;\n\t}, {});\n};\nvar findLatestVersion = (scope, key, eager) => {\n\tvar versions = eager ? eagerOnly(scope[key]) : scope[key];\n\tvar key = Object.keys(versions).reduce((a, b) => {\n\t\treturn !a || versionLt(a, b) ? b : a;\n\t}, 0);\n\treturn key && versions[key];\n};\nvar findSatisfyingVersion = (scope, key, requiredVersion, eager) => {\n\tvar versions = eager ? eagerOnly(scope[key]) : scope[key];\n\tvar key = Object.keys(versions).reduce((a, b) => {\n\t\tif (!satisfy(requiredVersion, b)) return a;\n\t\treturn !a || versionLt(a, b) ? b : a;\n\t}, 0);\n\treturn key && versions[key]\n};\nvar findSingletonVersionKey = (scope, key, eager) => {\n\tvar versions = eager ? eagerOnly(scope[key]) : scope[key];\n\treturn Object.keys(versions).reduce((a, b) => {\n\t\treturn !a || (!versions[a].loaded && versionLt(a, b)) ? b : a;\n\t}, 0);\n};\nvar getInvalidSingletonVersionMessage = (scope, key, version, requiredVersion) => {\n\treturn \"Unsatisfied version \" + version + \" from \" + (version && scope[key][version].from) + \" of shared singleton module \" + key + \" (required \" + rangeToString(requiredVersion) + \")\"\n};\nvar getInvalidVersionMessage = (scope, scopeName, key, requiredVersion, eager) => {\n\tvar versions = scope[key];\n\treturn \"No satisfying version (\" + rangeToString(requiredVersion) + \")\" + (eager ? \" for eager consumption\" : \"\") + \" of shared module \" + key + \" found in shared scope \" + scopeName + \".\\n\" +\n\t\t\"Available versions: \" + Object.keys(versions).map((key) => {\n\t\treturn key + \" from \" + versions[key].from;\n\t}).join(\", \");\n};\nvar fail = (msg) => {\n\tthrow new Error(msg);\n}\nvar failAsNotExist = (scopeName, key) => {\n\treturn fail(\"Shared module \" + key + \" doesn't exist in shared scope \" + scopeName);\n}\nvar warn = /*#__PURE__*/ (msg) => {\n\tif (typeof console !== \"undefined\" && console.warn) console.warn(msg);\n};\nvar init = (fn) => (function(scopeName, key, eager, c, d) {\n\tvar promise = __webpack_require__.I(scopeName);\n\tif (promise && promise.then && !eager) {\n\t\treturn promise.then(fn.bind(fn, scopeName, __webpack_require__.S[scopeName], key, false, c, d));\n\t}\n\treturn fn(scopeName, __webpack_require__.S[scopeName], key, eager, c, d);\n});\n\nvar useFallback = (scopeName, key, fallback) => {\n\treturn fallback ? fallback() : failAsNotExist(scopeName, key);\n}\nvar load = /*#__PURE__*/ init((scopeName, scope, key, eager, fallback) => {\n\tif (!exists(scope, key)) return useFallback(scopeName, key, fallback);\n\treturn get(findLatestVersion(scope, key, eager));\n});\nvar loadVersion = /*#__PURE__*/ init((scopeName, scope, key, eager, requiredVersion, fallback) => {\n\tif (!exists(scope, key)) return useFallback(scopeName, key, fallback);\n\tvar satisfyingVersion = findSatisfyingVersion(scope, key, requiredVersion, eager);\n\tif (satisfyingVersion) return get(satisfyingVersion);\n\twarn(getInvalidVersionMessage(scope, scopeName, key, requiredVersion, eager))\n\treturn get(findLatestVersion(scope, key, eager));\n});\nvar loadStrictVersion = /*#__PURE__*/ init((scopeName, scope, key, eager, requiredVersion, fallback) => {\n\tif (!exists(scope, key)) return useFallback(scopeName, key, fallback);\n\tvar satisfyingVersion = findSatisfyingVersion(scope, key, requiredVersion, eager);\n\tif (satisfyingVersion) return get(satisfyingVersion);\n\tif (fallback) return fallback();\n\tfail(getInvalidVersionMessage(scope, scopeName, key, requiredVersion, eager));\n});\nvar loadSingleton = /*#__PURE__*/ init((scopeName, scope, key, eager, fallback) => {\n\tif (!exists(scope, key)) return useFallback(scopeName, key, fallback);\n\tvar version = findSingletonVersionKey(scope, key, eager);\n\treturn get(scope[key][version]);\n});\nvar loadSingletonVersion = /*#__PURE__*/ init((scopeName, scope, key, eager, requiredVersion, fallback) => {\n\tif (!exists(scope, key)) return useFallback(scopeName, key, fallback);\n\tvar version = findSingletonVersionKey(scope, key, eager);\n\tif (!satisfy(requiredVersion, version)) {\n\t\twarn(getInvalidSingletonVersionMessage(scope, key, version, requiredVersion));\n\t}\n\treturn get(scope[key][version]);\n});\nvar loadStrictSingletonVersion = /*#__PURE__*/ init((scopeName, scope, key, eager, requiredVersion, fallback) => {\n\tif (!exists(scope, key)) return useFallback(scopeName, key, fallback);\n\tvar version = findSingletonVersionKey(scope, key, eager);\n\tif (!satisfy(requiredVersion, version)) {\n\t\tfail(getInvalidSingletonVersionMessage(scope, key, version, requiredVersion));\n\t}\n\treturn get(scope[key][version]);\n});\nvar installedModules = {};\nvar moduleToHandlerMapping = {\n\t\"webpack/sharing/consume/default/react\": () => (loadSingletonVersion(\"default\", \"react\", false, [1,18,2,0])),\n\t\"webpack/sharing/consume/default/@emotion/react/@emotion/react?98f9\": () => (loadStrictVersion(\"default\", \"@emotion/react\", false, [1,11,4,1], () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js\"), __webpack_require__.e(\"node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81\")]).then(() => (() => (__webpack_require__(/*! @emotion/react */ \"./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js\"))))))),\n\t\"webpack/sharing/consume/default/@emotion/styled/@emotion/styled\": () => (loadStrictVersion(\"default\", \"@emotion/styled\", false, [1,11,3,0], () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_emotion_react_emotion_react\")]).then(() => (() => (__webpack_require__(/*! @emotion/styled */ \"./node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js\"))))))),\n\t\"webpack/sharing/consume/default/@jupyterlab/application\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/application\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/apputils\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/apputils\", false, [1,4,6,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/notebook\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/notebook\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/console\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/console\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/ui-components\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/ui-components\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/coreutils\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/coreutils\", false, [1,6,5,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/launcher\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/launcher\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@jupyterlab/docmanager\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/docmanager\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@lumino/widgets\": () => (loadSingletonVersion(\"default\", \"@lumino/widgets\", false, [1,2,3,1,,\"alpha\",1])),\n\t\"webpack/sharing/consume/default/@mui/material/@mui/material\": () => (loadStrictVersion(\"default\", \"@mui/material\", false, [1,5,14,0], () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_mui_material_index_js\"), __webpack_require__.e(\"webpack_sharing_consume_default_react-dom\")]).then(() => (() => (__webpack_require__(/*! @mui/material */ \"./node_modules/@mui/material/index.js\"))))))),\n\t\"webpack/sharing/consume/default/@jupyterlab/terminal\": () => (loadSingletonVersion(\"default\", \"@jupyterlab/terminal\", false, [1,4,5,1])),\n\t\"webpack/sharing/consume/default/@emotion/react/@emotion/react?6a66\": () => (loadStrictVersion(\"default\", \"@emotion/react\", false, [1,11,0,0,,\"rc\",0], () => (Promise.all([__webpack_require__.e(\"vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js\"), __webpack_require__.e(\"vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js\")]).then(() => (() => (__webpack_require__(/*! @emotion/react */ \"./node_modules/@emotion/react/dist/emotion-react.browser.development.esm.js\"))))))),\n\t\"webpack/sharing/consume/default/react-dom\": () => (loadSingletonVersion(\"default\", \"react-dom\", false, [1,18,2,0]))\n};\n// no consumes in initial chunks\nvar chunkMapping = {\n\t\"webpack_sharing_consume_default_react\": [\n\t\t\"webpack/sharing/consume/default/react\"\n\t],\n\t\"webpack_sharing_consume_default_emotion_react_emotion_react-webpack_sharing_consume_default_e-2f734f\": [\n\t\t\"webpack/sharing/consume/default/@emotion/react/@emotion/react?98f9\",\n\t\t\"webpack/sharing/consume/default/@emotion/styled/@emotion/styled\"\n\t],\n\t\"lib_index_js\": [\n\t\t\"webpack/sharing/consume/default/@jupyterlab/application\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/apputils\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/notebook\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/console\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/ui-components\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/coreutils\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/launcher\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/docmanager\",\n\t\t\"webpack/sharing/consume/default/@lumino/widgets\",\n\t\t\"webpack/sharing/consume/default/@mui/material/@mui/material\",\n\t\t\"webpack/sharing/consume/default/@jupyterlab/terminal\"\n\t],\n\t\"webpack_sharing_consume_default_emotion_react_emotion_react\": [\n\t\t\"webpack/sharing/consume/default/@emotion/react/@emotion/react?6a66\"\n\t],\n\t\"webpack_sharing_consume_default_react-dom\": [\n\t\t\"webpack/sharing/consume/default/react-dom\"\n\t]\n};\nvar startedInstallModules = {};\n__webpack_require__.f.consumes = (chunkId, promises) => {\n\tif(__webpack_require__.o(chunkMapping, chunkId)) {\n\t\tchunkMapping[chunkId].forEach((id) => {\n\t\t\tif(__webpack_require__.o(installedModules, id)) return promises.push(installedModules[id]);\n\t\t\tif(!startedInstallModules[id]) {\n\t\t\tvar onFactory = (factory) => {\n\t\t\t\tinstalledModules[id] = 0;\n\t\t\t\t__webpack_require__.m[id] = (module) => {\n\t\t\t\t\tdelete __webpack_require__.c[id];\n\t\t\t\t\tmodule.exports = factory();\n\t\t\t\t}\n\t\t\t};\n\t\t\tstartedInstallModules[id] = true;\n\t\t\tvar onError = (error) => {\n\t\t\t\tdelete installedModules[id];\n\t\t\t\t__webpack_require__.m[id] = (module) => {\n\t\t\t\t\tdelete __webpack_require__.c[id];\n\t\t\t\t\tthrow error;\n\t\t\t\t}\n\t\t\t};\n\t\t\ttry {\n\t\t\t\tvar promise = moduleToHandlerMapping[id]();\n\t\t\t\tif(promise.then) {\n\t\t\t\t\tpromises.push(installedModules[id] = promise.then(onFactory)['catch'](onError));\n\t\t\t\t} else onFactory(promise);\n\t\t\t} catch(e) { onError(e); }\n\t\t\t}\n\t\t});\n\t}\n}","__webpack_require__.b = (typeof document !== 'undefined' && document.baseURI) || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"hdsp-agent\": 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(!/^webpack_sharing_consume_default_(emotion_react_emotion_react(|\\-webpack_sharing_consume_default_e\\-2f734f)|react(|\\-dom))$/.test(chunkId)) {\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t} else installedChunks[chunkId] = 0;\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n// no on chunks loaded\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkhdsp_agent\"] = self[\"webpackChunkhdsp_agent\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","","// module cache are used so entry inlining is disabled\n// startup\n// Load entry module and return exports\nvar __webpack_exports__ = __webpack_require__(\"webpack/container/entry/hdsp-agent\");\n",""],"names":[],"ignoreList":[],"sourceRoot":""}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hdsp-jupyter-extension
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: HDSP Agent JupyterLab Extension - Thin client for Agent Server
|
|
5
5
|
Project-URL: Homepage, https://github.com/yourusername/hdsp-agent
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/yourusername/hdsp-agent/issues
|
|
@@ -29,6 +29,7 @@ Requires-Dist: langchain-google-genai>=2.0.8
|
|
|
29
29
|
Requires-Dist: langchain-openai>=0.3.0
|
|
30
30
|
Requires-Dist: langchain>=1.0.0
|
|
31
31
|
Requires-Dist: langgraph>=1.0.0
|
|
32
|
+
Requires-Dist: psutil>=5.9.8
|
|
32
33
|
Requires-Dist: pydantic-settings>=2.6.0
|
|
33
34
|
Requires-Dist: pydantic>=2.10.0
|
|
34
35
|
Requires-Dist: sse-starlette>=2.2.0
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
jupyter_ext/__init__.py,sha256=
|
|
2
|
-
jupyter_ext/_version.py,sha256=
|
|
1
|
+
jupyter_ext/__init__.py,sha256=Q2JZdD99HBZVXukjTNE9C4BE8N5hyAqIW4365mzls8k,9042
|
|
2
|
+
jupyter_ext/_version.py,sha256=HEjwx4Z7F8kuClyHAsV4wKx1ISRZRK-llKMsA0g8L_w,171
|
|
3
3
|
jupyter_ext/config.py,sha256=I38C6P24rtC2uu3SFGRpXLd-YVUxTxe_bfdCHgi54OM,3262
|
|
4
|
-
jupyter_ext/handlers.py,sha256
|
|
4
|
+
jupyter_ext/handlers.py,sha256=-Q_2Wa2z6Zp6XggWfgv9QLfXXDyB9_q4tqEhp0hp4fo,74055
|
|
5
|
+
jupyter_ext/resource_usage.py,sha256=ymLaC934ryXLGZzMRkBMlQKaeUyCMofDN7dCMWl8B8A,6019
|
|
5
6
|
jupyter_ext/etc/jupyter/jupyter_server_config.d/hdsp_jupyter_extension.json,sha256=KXCyKfoeM1OxdPWa0wL2plndcqJkQ7ke3UaF0tJpMW0,86
|
|
6
|
-
jupyter_ext/labextension/build_log.json,sha256=
|
|
7
|
-
jupyter_ext/labextension/package.json,sha256=
|
|
8
|
-
jupyter_ext/labextension/static/frontend_styles_index_js.
|
|
9
|
-
jupyter_ext/labextension/static/frontend_styles_index_js.
|
|
10
|
-
jupyter_ext/labextension/static/lib_index_js.
|
|
11
|
-
jupyter_ext/labextension/static/lib_index_js.
|
|
7
|
+
jupyter_ext/labextension/build_log.json,sha256=Ip4U2Nbj12-sZIX-0VhtFvJhi9L2t4XloIiX6BjZ8ZM,23379
|
|
8
|
+
jupyter_ext/labextension/package.json,sha256=e7VJHtBqz1S_kH6PY5ZlJop6Do2K9GNupmNYqBIeDHw,4558
|
|
9
|
+
jupyter_ext/labextension/static/frontend_styles_index_js.8740a527757068814573.js,sha256=oW12TMJLTuB6djRUIkJEaKmbdPeoSAY1U8U8vE5Ui8Y,299275
|
|
10
|
+
jupyter_ext/labextension/static/frontend_styles_index_js.8740a527757068814573.js.map,sha256=WhT_5yoc6xaEBt_NX8eIMf_kou3lJNTfQb4IMRxbqco,351701
|
|
11
|
+
jupyter_ext/labextension/static/lib_index_js.e4ff4b5779b5e049f84c.js,sha256=ipaR3p6o8hsLaD54VQlVtrnzouoznz5RtBVaxvXsuSQ,756990
|
|
12
|
+
jupyter_ext/labextension/static/lib_index_js.e4ff4b5779b5e049f84c.js.map,sha256=DFZLKAHF9cqa-yz5Muo4Gt31TPACS7GQFdWmwrkrFVI,820408
|
|
12
13
|
jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js,sha256=59fuOBtJBzroB6mOhgCCSVbb0fSd90byTSSV2EvCsK4,4535
|
|
13
14
|
jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js.map,sha256=fRpFrcMlzgxQF-phepTC8-BRZwO1mDldaoMwJV_uY-Y,3116
|
|
14
15
|
jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js,sha256=o4ve2_dvZmfE0CZCaeBu11qYu-5OB2zDOAr5hWrIKn4,4535
|
|
15
16
|
jupyter_ext/labextension/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js.map,sha256=6gSs6dXiA5iQ3YiRSel1Ig2i4urNXU-HEEcHInczjOM,3116
|
|
16
|
-
jupyter_ext/labextension/static/remoteEntry.
|
|
17
|
-
jupyter_ext/labextension/static/remoteEntry.
|
|
17
|
+
jupyter_ext/labextension/static/remoteEntry.020cdb0b864cfaa4e41e.js,sha256=ZgnshmaS5b8Zkb_ZIT9bchqxfBa1vKIew-E0Wyh5pl8,38463
|
|
18
|
+
jupyter_ext/labextension/static/remoteEntry.020cdb0b864cfaa4e41e.js.map,sha256=knjZEWmuo7zRfi_81WK1THWwHD825dsrV5tjziWJmws,37219
|
|
18
19
|
jupyter_ext/labextension/static/style.js,sha256=Sb-Ji_5-ejVKmmKUV2b3sfuP7iFYDAgFFfT1Jt0hRcE,163
|
|
19
20
|
jupyter_ext/labextension/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js,sha256=oCoskp4kEWGDCpNbXfW5AwnzBEZ5OUiO9Tq7An4ORJc,17120
|
|
20
21
|
jupyter_ext/labextension/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js.map,sha256=MkPt1pMGQa_0-5BWR36xjPnwdr4BQai1hf3zlHIHgis,16964
|
|
@@ -28,42 +29,47 @@ jupyter_ext/labextension/static/vendors-node_modules_mui_material_index_js.98569
|
|
|
28
29
|
jupyter_ext/labextension/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js.map,sha256=_p6BJKXfq9zLGeBkN7gezYwZljO4adpNKqjwD3N79GY,2210898
|
|
29
30
|
jupyter_ext/labextension/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.1f5038488cdfd8b3a85d.js,sha256=YCT05xGYLDCpIYCyDWyhZdWrPAu_L_ZdhvxpVBtG2G8,295007
|
|
30
31
|
jupyter_ext/labextension/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.1f5038488cdfd8b3a85d.js.map,sha256=08fBThOCy0BnlvpXxZGsM97YcU0Ik7UCgaMDxmUg8F0,262831
|
|
32
|
+
jupyter_ext/tests/test_handlers.py,sha256=SAt-WFOF0K0M8yWv4YIfltioBfradGT-3yZ4YBdBRcI,2082
|
|
31
33
|
agent_server/__init__.py,sha256=YF9Kl0x5WKxiqA_Ma0M7FjeQWHCBAvker-v5Y40F1x0,196
|
|
32
|
-
agent_server/main.py,sha256=
|
|
34
|
+
agent_server/main.py,sha256=fXx92MmQiisOcGhFcOjjQLY-02rN-nayS5M7nDoeeMw,5751
|
|
33
35
|
agent_server/core/__init__.py,sha256=KiIQyCJFmJKLpHueS4SPyhNafnupgv2izISdOePTFCc,2262
|
|
34
36
|
agent_server/core/api_key_manager.py,sha256=4GA3wsKcGyUTO3m9Rb1I5j1z4n6mde9pBWfPROwzDm4,14699
|
|
35
37
|
agent_server/core/code_validator.py,sha256=VY1oHUZ0sefhj0Bi5g1OoRab9DNatXDAUkJbdLN5Kyk,44487
|
|
36
38
|
agent_server/core/context_condenser.py,sha256=IO7N-Kbi97oPv85QUQ5x_rMkrJ77hIXu2tH_yPQVTlw,10040
|
|
37
|
-
agent_server/core/embedding_service.py,sha256=
|
|
39
|
+
agent_server/core/embedding_service.py,sha256=3bDl2rASJpovkYscqmvTUmIcV6nVQOiojSQc8UOXZqs,8873
|
|
38
40
|
agent_server/core/error_classifier.py,sha256=Gk9gRVF_9TJ_lwKQyajEpJtbm_5f_FSLjERtskE8pWQ,22025
|
|
39
41
|
agent_server/core/llm_client.py,sha256=eiBgz-3Ymzk3OVBSADeoCTsidma0pTolxYt5Dfazqgw,3153
|
|
40
42
|
agent_server/core/llm_service.py,sha256=uRFdmrby5CYqrz3qPSDK2jWA_KFMcnCy5Tv0MHucerw,27833
|
|
41
43
|
agent_server/core/notebook_generator.py,sha256=PDRi7-E4aQRDqZqHxpHMxMs7S7j6RNFyhEIpuH7cKVo,9668
|
|
42
44
|
agent_server/core/prompt_builder.py,sha256=DPqdowGzfZLIKezhqHhnHY_5WsYEMcTUE1PWZHGympg,1092
|
|
43
|
-
agent_server/core/rag_manager.py,sha256=
|
|
44
|
-
agent_server/core/reflection_engine.py,sha256=
|
|
45
|
-
agent_server/core/retriever.py,sha256=
|
|
45
|
+
agent_server/core/rag_manager.py,sha256=WDt26BaVv5sa6iiSFPS93DxgXU-FQkLmN5KT8na8blQ,27071
|
|
46
|
+
agent_server/core/reflection_engine.py,sha256=2y5Ml7lOMslKyFtFiQRHlErjiLsXTg6uJ1mZ0xNm78Y,16196
|
|
47
|
+
agent_server/core/retriever.py,sha256=_KfN9jHA_NVV6SZvmruhLXAa6YYkM3pLFtq3Um8vdcI,7797
|
|
46
48
|
agent_server/core/state_verifier.py,sha256=ZvCEtYG8-7gz5Fp-EsEc-TmC4XyjzJzimfd8u_1CLbU,15410
|
|
47
49
|
agent_server/core/summary_generator.py,sha256=sdQtxnCafU5Vqpv8k-uWvNfF34nhEbo1zqA7OR2TGLE,16230
|
|
48
50
|
agent_server/core/task_manager.py,sha256=-KFp8aS4pJUya7CJYxLm-piZyKLhivvCX7HQ4fy1oM0,6387
|
|
51
|
+
agent_server/core/vllm_embedding_service.py,sha256=H-0SYL84h-8OAhQzkTozbyu0ekTP-4yIIKq-I7Olv8o,7429
|
|
49
52
|
agent_server/knowledge/__init__.py,sha256=6xV1zhCEIXrugMk7CQmsDkKgqqllQRCAPBMOUVYmamI,229
|
|
50
|
-
agent_server/knowledge/watchdog_service.py,sha256=
|
|
53
|
+
agent_server/knowledge/watchdog_service.py,sha256=o0O_erqC1QrrmkNgLCqdvg3Mo4ILReiGUIzSxB8ZpL4,11107
|
|
54
|
+
agent_server/langchain/ARCHITECTURE.md,sha256=8leVOYYdbfnN-DU9vmqtlss9LPsUUUesWB7gYwAyUX8,36892
|
|
51
55
|
agent_server/langchain/__init__.py,sha256=uol-jV2VVlM4_kW3X301Asf5WovJfdgRAHQM6k9U7o8,615
|
|
52
|
-
agent_server/langchain/agent.py,sha256=
|
|
53
|
-
agent_server/langchain/
|
|
54
|
-
agent_server/langchain/
|
|
55
|
-
agent_server/langchain/
|
|
56
|
-
agent_server/langchain/
|
|
57
|
-
agent_server/langchain/
|
|
58
|
-
agent_server/langchain/
|
|
59
|
-
agent_server/langchain/
|
|
60
|
-
agent_server/langchain/
|
|
61
|
-
agent_server/langchain/
|
|
62
|
-
agent_server/langchain/
|
|
63
|
-
agent_server/langchain/tools/
|
|
64
|
-
agent_server/langchain/tools/
|
|
65
|
-
agent_server/langchain/tools/
|
|
66
|
-
agent_server/langchain/tools/
|
|
56
|
+
agent_server/langchain/agent.py,sha256=QMf-rBEDYE6XzDVkqexDrK31M-o1it0ZSD5Njae7ALw,8381
|
|
57
|
+
agent_server/langchain/custom_middleware.py,sha256=iEs3o_9LCkq9iOdsw4uWkKeHLyZNrmGZ6ueSvIGXWuw,24393
|
|
58
|
+
agent_server/langchain/hitl_config.py,sha256=7fyuX9mHq-x9q_XA-x8bo4FFDduKpKgksK30tvSxSqw,2818
|
|
59
|
+
agent_server/langchain/llm_factory.py,sha256=rQhXO5c-wuouGskxgy9-pAFmjawd_hBKmfIhafgt3fw,5108
|
|
60
|
+
agent_server/langchain/logging_utils.py,sha256=8K99qUV71Y_l8k01u897F5esZ1CuEyfBgy07KUch3hc,8065
|
|
61
|
+
agent_server/langchain/prompts.py,sha256=XINkbQI7s4o3FVq1WYXhVIb4757KJsfkNGCDgeRsKKI,6885
|
|
62
|
+
agent_server/langchain/state.py,sha256=c439fYtlDnhaZB_mhdB5OLd_LGQNFe0BuFOI-ADhJEc,4319
|
|
63
|
+
agent_server/langchain/executors/__init__.py,sha256=S5B_jW-TXuvrvAonWFuJvHx90ao-1RFpOE6eIq1HFRo,199
|
|
64
|
+
agent_server/langchain/executors/notebook_searcher.py,sha256=IZdC1mfAc93h_VBSJ-Q19MRJGRtot02_pLb4Me3L4zM,15367
|
|
65
|
+
agent_server/langchain/tools/__init__.py,sha256=LEm-6PcfkdNvBtlGz_eq0e6p5a2mYYsWmUnWwfSnErY,1689
|
|
66
|
+
agent_server/langchain/tools/file_tools.py,sha256=OaZ_R8Lhk6iJQeXKexwEGvN-wMKVjrY8zSx2uBviy2M,17222
|
|
67
|
+
agent_server/langchain/tools/file_utils.py,sha256=dVXQnXKt2Ja_uEHfccUZVmdfpsXq_xzcZcawlspx_s0,10578
|
|
68
|
+
agent_server/langchain/tools/jupyter_tools.py,sha256=4FHNxdYFuflVbFoBL7NL3hsEBr1qA_a-vcChACfp3n0,4207
|
|
69
|
+
agent_server/langchain/tools/lsp_tools.py,sha256=q1TqXapd9fx2DQXwukOL9gQPmR0roY-9onEhepjslT0,8563
|
|
70
|
+
agent_server/langchain/tools/resource_tools.py,sha256=sA-d820aN0L2htNW2Djpk8JKUJXWHc4gNCbNT1_SZQ4,5105
|
|
71
|
+
agent_server/langchain/tools/search_tools.py,sha256=bAXbcWwT7-ng_3G_gFNv5b45JZst8f_6W_r6FnWEAgw,9617
|
|
72
|
+
agent_server/langchain/tools/shell_tools.py,sha256=zankxtDBrNaGU1N737ujCPypDOwIy9L7FZTnRavkzJE,1934
|
|
67
73
|
agent_server/prompts/__init__.py,sha256=nwAKfAuUkWnoN41p2jA0yBqwMfXMZhWNsWl5GU39Snk,1498
|
|
68
74
|
agent_server/prompts/file_action_prompts.py,sha256=riZ9UtSv5etAZ_Il6Atr10gJeEhUA_QBcSpPtFXP2zk,2673
|
|
69
75
|
agent_server/routers/__init__.py,sha256=vXk7By8qKyZ9PgSBlPqjlYM35cMKsn8iyRVjlvmaWoU,177
|
|
@@ -71,9 +77,9 @@ agent_server/routers/agent.py,sha256=6G1lwSsJHfVpIzq015cqJgcuUZeVxvCr17Gi3HgMdl4
|
|
|
71
77
|
agent_server/routers/chat.py,sha256=jXNdJVTrL-C4SKMWioP4_jI3jhDdnmiQRtpYtaPqOo4,6228
|
|
72
78
|
agent_server/routers/config.py,sha256=8QumO4MK2PnfSPTcVBIksqu1WS-FBo3RBzAONU_zZVk,2985
|
|
73
79
|
agent_server/routers/file_resolver.py,sha256=KNopmolytoC1w9GH7Uor4tklbS2lqUYXea2U8xKPTI4,9237
|
|
74
|
-
agent_server/routers/health.py,sha256=
|
|
75
|
-
agent_server/routers/langchain_agent.py,sha256=
|
|
76
|
-
agent_server/routers/rag.py,sha256=
|
|
80
|
+
agent_server/routers/health.py,sha256=30ens642WxvJBHvbH7Bf-PM3GCYMUpEI1Y5-TB_DS48,1222
|
|
81
|
+
agent_server/routers/langchain_agent.py,sha256=JdDqCGcnGE5ZQ37xQEBrDYjqpx56wtipAHxfs-BNRQ0,102336
|
|
82
|
+
agent_server/routers/rag.py,sha256=_oEOI0JhlQBlQUfpxfjLesFD3HOTzpf9zfLjAinbitM,5065
|
|
77
83
|
agent_server/schemas/__init__.py,sha256=3sYVGcT7S5MkB3tDCoX3vojmhT-aHj2esg8STvjRGCk,1153
|
|
78
84
|
hdsp_agent_core/__init__.py,sha256=QQEV26AIbNUvriqSdUqmUTouFkAt2hTssai2fsTibdc,3262
|
|
79
85
|
hdsp_agent_core/factory.py,sha256=ez7KBTn91CHbKgoo85qVNpxRRp1bszE9fgBHEqY1GAg,8173
|
|
@@ -93,46 +99,46 @@ hdsp_agent_core/models/__init__.py,sha256=vDbXUIqmMAqDRySutVcOFI_tAJFfWwfRq0dl0x
|
|
|
93
99
|
hdsp_agent_core/models/agent.py,sha256=6S5CKFGWGVxUW82sxhuQy-ndlvow-KVLKRoBS_Tj6KY,11104
|
|
94
100
|
hdsp_agent_core/models/chat.py,sha256=KNrcaKmWuqbPc0auunx1PxkERL3Y35AAyDipCxTjwEE,1224
|
|
95
101
|
hdsp_agent_core/models/common.py,sha256=1QrfyyJtZn4QoYf44FDT2tpkWVww4VoXIH6GQPLTmcQ,3164
|
|
96
|
-
hdsp_agent_core/models/rag.py,sha256=
|
|
102
|
+
hdsp_agent_core/models/rag.py,sha256=1XtcMewc2TfDu3XIpgHJ4Xqisoa0F9OUuqDl1fHYAlo,11076
|
|
97
103
|
hdsp_agent_core/prompts/__init__.py,sha256=nd_xZ3mpeHv1LBexcS6kgukva50p3DScmK9On-Quznk,1563
|
|
98
|
-
hdsp_agent_core/prompts/auto_agent_prompts.py,sha256=
|
|
104
|
+
hdsp_agent_core/prompts/auto_agent_prompts.py,sha256=Tm9WAiQ1zX2ubbOoWsep1DXDc0ZsZuq2AhitgW2UJnw,49403
|
|
99
105
|
hdsp_agent_core/prompts/cell_action_prompts.py,sha256=bmX9BLxt4RQ3UbZaeRH_zk3YJgysbaUyqBmiouETzrY,4793
|
|
100
106
|
hdsp_agent_core/services/__init__.py,sha256=XC2gl8ST6GgWG1nXpn5Iayipmsyz1Q7gg3DK-Qp_Tqg,466
|
|
101
107
|
hdsp_agent_core/services/agent_service.py,sha256=8uhLHPL5MX61OmZXwm5b14UCTm5ix0AswBn8JOCkREs,15259
|
|
102
108
|
hdsp_agent_core/services/chat_service.py,sha256=1MMXteBjQrPrh5HMcfhYReKenzUbGomVySq7vDqox_A,7172
|
|
103
|
-
hdsp_agent_core/services/rag_service.py,sha256=
|
|
109
|
+
hdsp_agent_core/services/rag_service.py,sha256=nomhLdV_Ii4cr3p15oBUW1NpE2jvQ1EohZCS8WueHz4,8420
|
|
104
110
|
hdsp_agent_core/tests/__init__.py,sha256=RinkbDl7BnUloYATdCHWXqkVytuWHPNadeJL8FfmHOs,30
|
|
105
111
|
hdsp_agent_core/tests/conftest.py,sha256=PfNEw0TwEaQ4K2kqA8zymnB3VOGrYFVXLdae8hUaRTw,2695
|
|
106
112
|
hdsp_agent_core/tests/test_factory.py,sha256=hy94qoChlozQ5UPtkVQJ2ZwfCUmEr0G4zHWD_Gab044,10195
|
|
107
113
|
hdsp_agent_core/tests/test_services.py,sha256=DsBwcQ_--2phKWN4XnknabvIUIlBUNOtUP_8ympr8CE,12153
|
|
108
|
-
hdsp_jupyter_extension-2.0.
|
|
109
|
-
hdsp_jupyter_extension-2.0.
|
|
110
|
-
hdsp_jupyter_extension-2.0.
|
|
111
|
-
hdsp_jupyter_extension-2.0.
|
|
112
|
-
hdsp_jupyter_extension-2.0.
|
|
113
|
-
hdsp_jupyter_extension-2.0.
|
|
114
|
-
hdsp_jupyter_extension-2.0.
|
|
115
|
-
hdsp_jupyter_extension-2.0.
|
|
116
|
-
hdsp_jupyter_extension-2.0.
|
|
117
|
-
hdsp_jupyter_extension-2.0.
|
|
118
|
-
hdsp_jupyter_extension-2.0.
|
|
119
|
-
hdsp_jupyter_extension-2.0.
|
|
120
|
-
hdsp_jupyter_extension-2.0.
|
|
121
|
-
hdsp_jupyter_extension-2.0.
|
|
122
|
-
hdsp_jupyter_extension-2.0.
|
|
123
|
-
hdsp_jupyter_extension-2.0.
|
|
124
|
-
hdsp_jupyter_extension-2.0.
|
|
125
|
-
hdsp_jupyter_extension-2.0.
|
|
126
|
-
hdsp_jupyter_extension-2.0.
|
|
127
|
-
hdsp_jupyter_extension-2.0.
|
|
128
|
-
hdsp_jupyter_extension-2.0.
|
|
129
|
-
hdsp_jupyter_extension-2.0.
|
|
130
|
-
hdsp_jupyter_extension-2.0.
|
|
131
|
-
hdsp_jupyter_extension-2.0.
|
|
132
|
-
hdsp_jupyter_extension-2.0.
|
|
133
|
-
hdsp_jupyter_extension-2.0.
|
|
134
|
-
hdsp_jupyter_extension-2.0.
|
|
135
|
-
hdsp_jupyter_extension-2.0.
|
|
136
|
-
hdsp_jupyter_extension-2.0.
|
|
137
|
-
hdsp_jupyter_extension-2.0.
|
|
138
|
-
hdsp_jupyter_extension-2.0.
|
|
114
|
+
hdsp_jupyter_extension-2.0.8.data/data/etc/jupyter/jupyter_server_config.d/hdsp_jupyter_extension.json,sha256=KXCyKfoeM1OxdPWa0wL2plndcqJkQ7ke3UaF0tJpMW0,86
|
|
115
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/build_log.json,sha256=Ip4U2Nbj12-sZIX-0VhtFvJhi9L2t4XloIiX6BjZ8ZM,23379
|
|
116
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/package.json,sha256=e7VJHtBqz1S_kH6PY5ZlJop6Do2K9GNupmNYqBIeDHw,4558
|
|
117
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.8740a527757068814573.js,sha256=oW12TMJLTuB6djRUIkJEaKmbdPeoSAY1U8U8vE5Ui8Y,299275
|
|
118
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/frontend_styles_index_js.8740a527757068814573.js.map,sha256=WhT_5yoc6xaEBt_NX8eIMf_kou3lJNTfQb4IMRxbqco,351701
|
|
119
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.e4ff4b5779b5e049f84c.js,sha256=ipaR3p6o8hsLaD54VQlVtrnzouoznz5RtBVaxvXsuSQ,756990
|
|
120
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/lib_index_js.e4ff4b5779b5e049f84c.js.map,sha256=DFZLKAHF9cqa-yz5Muo4Gt31TPACS7GQFdWmwrkrFVI,820408
|
|
121
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js,sha256=59fuOBtJBzroB6mOhgCCSVbb0fSd90byTSSV2EvCsK4,4535
|
|
122
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b80.c095373419d05e6f141a.js.map,sha256=fRpFrcMlzgxQF-phepTC8-BRZwO1mDldaoMwJV_uY-Y,3116
|
|
123
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js,sha256=o4ve2_dvZmfE0CZCaeBu11qYu-5OB2zDOAr5hWrIKn4,4535
|
|
124
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/node_modules_emotion_use-insertion-effect-with-fallbacks_dist_emotion-use-insertion-effect-wi-3ba6b81.61e75fb98ecff46cf836.js.map,sha256=6gSs6dXiA5iQ3YiRSel1Ig2i4urNXU-HEEcHInczjOM,3116
|
|
125
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.020cdb0b864cfaa4e41e.js,sha256=ZgnshmaS5b8Zkb_ZIT9bchqxfBa1vKIew-E0Wyh5pl8,38463
|
|
126
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/remoteEntry.020cdb0b864cfaa4e41e.js.map,sha256=knjZEWmuo7zRfi_81WK1THWwHD825dsrV5tjziWJmws,37219
|
|
127
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/style.js,sha256=Sb-Ji_5-ejVKmmKUV2b3sfuP7iFYDAgFFfT1Jt0hRcE,163
|
|
128
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js,sha256=oCoskp4kEWGDCpNbXfW5AwnzBEZ5OUiO9Tq7An4ORJc,17120
|
|
129
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_babel_runtime_helpers_esm_extends_js-node_modules_emotion_serialize_dist-051195.e2553aab0c3963b83dd7.js.map,sha256=MkPt1pMGQa_0-5BWR36xjPnwdr4BQai1hf3zlHIHgis,16964
|
|
130
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js.24edcc52a1c014a8a5f0.js,sha256=wzNlZbG78o1o8VdysX4Jh8svCJn7EkCEsWysYVNDA_M,72770
|
|
131
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_cache_dist_emotion-cache_browser_development_esm_js.24edcc52a1c014a8a5f0.js.map,sha256=ezT6x--1WMPEaTvc-Hls3--P26cDONPdLIJoVturnZY,65792
|
|
132
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.19ecf6babe00caff6b8a.js,sha256=k2kgP3oQDAk-1SnNqBErcJNjPDaVau6RaKqWLlhWPhk,52636
|
|
133
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_react_dist_emotion-react_browser_development_esm_js.19ecf6babe00caff6b8a.js.map,sha256=vOmkYMCMF8wPvjg0KkidY8nqkUKsRFACvMrOZ9oCV5I,52519
|
|
134
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js,sha256=ei2Rn4RgH5MPqmhYKgavrxtq7O8m3tKAhi7DZtm41GA,23091
|
|
135
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_emotion_styled_dist_emotion-styled_browser_development_esm_js.661fb5836f4978a7c6e1.js.map,sha256=wcO4207yUzmN33D_MSJBxQynNmUI6GWQLOqvDw7nRbU,17846
|
|
136
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js,sha256=stuAnHjRqwUbf11qPnbXV4HyWwtj-CtvGis3BDrZlXw,3064261
|
|
137
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_index_js.985697e0162d8d088ca2.js.map,sha256=_p6BJKXfq9zLGeBkN7gezYwZljO4adpNKqjwD3N79GY,2210898
|
|
138
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.1f5038488cdfd8b3a85d.js,sha256=YCT05xGYLDCpIYCyDWyhZdWrPAu_L_ZdhvxpVBtG2G8,295007
|
|
139
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/static/vendors-node_modules_mui_material_utils_createSvgIcon_js.1f5038488cdfd8b3a85d.js.map,sha256=08fBThOCy0BnlvpXxZGsM97YcU0Ik7UCgaMDxmUg8F0,262831
|
|
140
|
+
hdsp_jupyter_extension-2.0.8.data/data/share/jupyter/labextensions/hdsp-agent/install.json,sha256=xNrwkh9wNTyYPt0_LNWXGICeqQDHRsQzflQFbLOwAH4,193
|
|
141
|
+
hdsp_jupyter_extension-2.0.8.dist-info/METADATA,sha256=rNMs2mcer2n1NswRucJ4IctmTfJHkqJFcYdEhJSw018,4260
|
|
142
|
+
hdsp_jupyter_extension-2.0.8.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
143
|
+
hdsp_jupyter_extension-2.0.8.dist-info/licenses/LICENSE,sha256=LZnhgcr8NXVgC4ewcnNjWlYahaIS_KLMxKWDCZkHpQo,1061
|
|
144
|
+
hdsp_jupyter_extension-2.0.8.dist-info/RECORD,,
|
jupyter_ext/__init__.py
CHANGED
|
@@ -214,6 +214,24 @@ def load_jupyter_server_extension(server_app):
|
|
|
214
214
|
web_app = server_app.web_app
|
|
215
215
|
setup_handlers(web_app)
|
|
216
216
|
|
|
217
|
+
# Expose environment variables to client via PageConfig
|
|
218
|
+
# This allows frontend to access HDSP_ENV, HDSP_PRJ_ID, JUPYTERHUB_USER
|
|
219
|
+
page_config = web_app.settings.setdefault('page_config_data', {})
|
|
220
|
+
|
|
221
|
+
# Add HDSP environment variables
|
|
222
|
+
hdsp_env = os.environ.get('HDSP_ENV', '')
|
|
223
|
+
hdsp_prj_id = os.environ.get('HDSP_PRJ_ID', '')
|
|
224
|
+
jupyterhub_user = os.environ.get('JUPYTERHUB_USER', '')
|
|
225
|
+
|
|
226
|
+
if hdsp_env:
|
|
227
|
+
page_config['HDSP_ENV'] = hdsp_env
|
|
228
|
+
if hdsp_prj_id:
|
|
229
|
+
page_config['HDSP_PRJ_ID'] = hdsp_prj_id
|
|
230
|
+
if jupyterhub_user:
|
|
231
|
+
page_config['JUPYTERHUB_USER'] = jupyterhub_user
|
|
232
|
+
|
|
233
|
+
server_app.log.info(f"Exposed HDSP env vars to client: HDSP_ENV={hdsp_env}, HDSP_PRJ_ID={hdsp_prj_id}, JUPYTERHUB_USER={jupyterhub_user}")
|
|
234
|
+
|
|
217
235
|
server_app.log.info("HDSP Jupyter Extension loaded (v%s)", __version__)
|
|
218
236
|
if embed_agent_server:
|
|
219
237
|
server_app.log.info("Running in EMBEDDED mode (single process)")
|
jupyter_ext/_version.py
CHANGED