@nine-lab/nine-mu 0.1.181 → 0.1.182
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.
package/dist/nine-mu.js
CHANGED
|
@@ -13521,7 +13521,7 @@ class NineChatManager {
|
|
|
13521
13521
|
return await __privateMethod(this, _NineChatManager_instances, callTool_fn).call(this, "system-brain", {
|
|
13522
13522
|
user_input: v,
|
|
13523
13523
|
chat_history: formattedHistory,
|
|
13524
|
-
routes,
|
|
13524
|
+
routes: __privateMethod(this, _NineChatManager_instances, getRoutes_fn).call(this),
|
|
13525
13525
|
current_path: "/group_member/student_management"
|
|
13526
13526
|
});
|
|
13527
13527
|
});
|
|
@@ -13539,12 +13539,12 @@ class NineChatManager {
|
|
|
13539
13539
|
}
|
|
13540
13540
|
try {
|
|
13541
13541
|
__privateMethod(this, _NineChatManager_instances, pushMessage_fn).call(this, "user", userInput);
|
|
13542
|
-
const
|
|
13542
|
+
const routes = await __privateMethod(this, _NineChatManager_instances, fetchRoutes_fn).call(this);
|
|
13543
13543
|
const response = await __privateGet(this, _mcpClient).callTool({
|
|
13544
13544
|
name: "system-brain",
|
|
13545
13545
|
arguments: {
|
|
13546
13546
|
user_input: userInput,
|
|
13547
|
-
routes
|
|
13547
|
+
routes,
|
|
13548
13548
|
current_path: window.location.pathname
|
|
13549
13549
|
// 실시간 경로 주입
|
|
13550
13550
|
}
|
|
@@ -13840,7 +13840,7 @@ render_fn = function() {
|
|
|
13840
13840
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13841
13841
|
this.shadowRoot.innerHTML = `
|
|
13842
13842
|
<style>
|
|
13843
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13843
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.181"}/dist/css/nine-mu.css";
|
|
13844
13844
|
${customImport}
|
|
13845
13845
|
</style>
|
|
13846
13846
|
<div class="wrapper">
|
|
@@ -40059,7 +40059,7 @@ class NineDiff extends HTMLElement {
|
|
|
40059
40059
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40060
40060
|
this.shadowRoot.innerHTML = `
|
|
40061
40061
|
<style>
|
|
40062
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40062
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.181"}/dist/css/nine-mu.css";
|
|
40063
40063
|
${customImport}
|
|
40064
40064
|
</style>
|
|
40065
40065
|
|
|
@@ -40169,7 +40169,7 @@ render_fn2 = function() {
|
|
|
40169
40169
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40170
40170
|
this.shadowRoot.innerHTML = `
|
|
40171
40171
|
<style>
|
|
40172
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40172
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.181"}/dist/css/nine-mu.css";
|
|
40173
40173
|
${customImport}
|
|
40174
40174
|
</style>
|
|
40175
40175
|
|
|
@@ -40496,7 +40496,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
40496
40496
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40497
40497
|
this.shadowRoot.innerHTML = `
|
|
40498
40498
|
<style>
|
|
40499
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40499
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.181"}/dist/css/nine-mu.css";
|
|
40500
40500
|
${customImport}
|
|
40501
40501
|
</style>
|
|
40502
40502
|
|
|
@@ -40590,7 +40590,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
40590
40590
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
40591
40591
|
}
|
|
40592
40592
|
const NineMu = {
|
|
40593
|
-
version: "0.1.
|
|
40593
|
+
version: "0.1.181",
|
|
40594
40594
|
init: (config2) => {
|
|
40595
40595
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40596
40596
|
}
|