@nine-lab/nine-mu 0.1.190 β 0.1.192
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 +18 -12
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChatManager.js +13 -11
package/dist/nine-mu.js
CHANGED
|
@@ -13570,15 +13570,21 @@ connect_fn = async function() {
|
|
|
13570
13570
|
trace.log(__privateGet(this, _mcpClient));
|
|
13571
13571
|
__privateGet(this, _mcpClient).connect(transport).then(() => {
|
|
13572
13572
|
__privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "β
MCP Connected");
|
|
13573
|
-
__privateGet(this, _mcpClient).
|
|
13574
|
-
|
|
13575
|
-
|
|
13576
|
-
|
|
13573
|
+
__privateGet(this, _mcpClient).setNotificationHandler(
|
|
13574
|
+
{
|
|
13575
|
+
method: "notifications/logging/message"
|
|
13576
|
+
// π μ΄ λ¦¬ν°λ΄ κ°μ΄ μ μ μΈμλμ΄μΌ ν©λλ€.
|
|
13577
|
+
},
|
|
13578
|
+
(notification) => {
|
|
13579
|
+
try {
|
|
13580
|
+
const logData = JSON.parse(notification.params.message);
|
|
13581
|
+
if (logData.type === "BRAIN_DECISION") {
|
|
13582
|
+
}
|
|
13583
|
+
} catch (e) {
|
|
13584
|
+
console.warn("μλ¦Ό λ°μ΄ν° νμ± μ€ν¨:", e);
|
|
13577
13585
|
}
|
|
13578
|
-
} catch (e) {
|
|
13579
|
-
console.warn("μλ¦Ό νμ± μ€ν¨:", e);
|
|
13580
13586
|
}
|
|
13581
|
-
|
|
13587
|
+
);
|
|
13582
13588
|
}).catch((err) => {
|
|
13583
13589
|
trace.error("β MCP μ°κ²° μ€ν¨", err);
|
|
13584
13590
|
__privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "β Connection Failed");
|
|
@@ -13803,7 +13809,7 @@ render_fn = function() {
|
|
|
13803
13809
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13804
13810
|
this.shadowRoot.innerHTML = `
|
|
13805
13811
|
<style>
|
|
13806
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13812
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
|
|
13807
13813
|
${customImport}
|
|
13808
13814
|
</style>
|
|
13809
13815
|
<div class="wrapper">
|
|
@@ -40022,7 +40028,7 @@ class NineDiff extends HTMLElement {
|
|
|
40022
40028
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40023
40029
|
this.shadowRoot.innerHTML = `
|
|
40024
40030
|
<style>
|
|
40025
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40031
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
|
|
40026
40032
|
${customImport}
|
|
40027
40033
|
</style>
|
|
40028
40034
|
|
|
@@ -40132,7 +40138,7 @@ render_fn2 = function() {
|
|
|
40132
40138
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40133
40139
|
this.shadowRoot.innerHTML = `
|
|
40134
40140
|
<style>
|
|
40135
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40141
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
|
|
40136
40142
|
${customImport}
|
|
40137
40143
|
</style>
|
|
40138
40144
|
|
|
@@ -40459,7 +40465,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
40459
40465
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40460
40466
|
this.shadowRoot.innerHTML = `
|
|
40461
40467
|
<style>
|
|
40462
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40468
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
|
|
40463
40469
|
${customImport}
|
|
40464
40470
|
</style>
|
|
40465
40471
|
|
|
@@ -40553,7 +40559,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
40553
40559
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
40554
40560
|
}
|
|
40555
40561
|
const NineMu = {
|
|
40556
|
-
version: "0.1.
|
|
40562
|
+
version: "0.1.191",
|
|
40557
40563
|
init: (config2) => {
|
|
40558
40564
|
trace$1.log("π οΈ Nine-Mu Engine initialized", config2);
|
|
40559
40565
|
}
|