@nine-lab/nine-mu 0.1.128 → 0.1.129
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 +8 -7
- 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/NineChat.js +6 -3
package/dist/nine-mu.js
CHANGED
|
@@ -13702,13 +13702,14 @@ initActions_fn = function() {
|
|
|
13702
13702
|
try {
|
|
13703
13703
|
const result = await __privateGet(this, _mcpClient).callTool({
|
|
13704
13704
|
name: "chat_agent",
|
|
13705
|
-
// 모든 요청을 처리하는 통합 에이전트 도구 (예시)
|
|
13706
13705
|
arguments: {
|
|
13707
|
-
|
|
13706
|
+
// 🔴 여기를 확인하세요!
|
|
13707
|
+
// 서버 Zod 스키마가 { userInput: z.string() } 이므로 이름을 맞춰야 합니다.
|
|
13708
|
+
userInput: userPrompt,
|
|
13708
13709
|
context: {
|
|
13709
13710
|
routesPath: __privateGet(this, _routesPath),
|
|
13710
13711
|
packageName: __privateGet(this, _packageName),
|
|
13711
|
-
|
|
13712
|
+
genTargets: Array.from(this.shadowRoot.querySelectorAll('input[name="gen_target"]:checked')).map((el) => el.value)
|
|
13712
13713
|
}
|
|
13713
13714
|
}
|
|
13714
13715
|
});
|
|
@@ -13733,7 +13734,7 @@ render_fn = function() {
|
|
|
13733
13734
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13734
13735
|
this.shadowRoot.innerHTML = `
|
|
13735
13736
|
<style>
|
|
13736
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13737
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.128"}/dist/css/nine-mu.css";
|
|
13737
13738
|
${customImport}
|
|
13738
13739
|
</style>
|
|
13739
13740
|
<div class="wrapper">
|
|
@@ -39951,7 +39952,7 @@ class NineDiff extends HTMLElement {
|
|
|
39951
39952
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
39952
39953
|
this.shadowRoot.innerHTML = `
|
|
39953
39954
|
<style>
|
|
39954
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
39955
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.128"}/dist/css/nine-mu.css";
|
|
39955
39956
|
${customImport}
|
|
39956
39957
|
</style>
|
|
39957
39958
|
|
|
@@ -40061,7 +40062,7 @@ render_fn2 = function() {
|
|
|
40061
40062
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40062
40063
|
this.shadowRoot.innerHTML = `
|
|
40063
40064
|
<style>
|
|
40064
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40065
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.128"}/dist/css/nine-mu.css";
|
|
40065
40066
|
${customImport}
|
|
40066
40067
|
</style>
|
|
40067
40068
|
|
|
@@ -40100,7 +40101,7 @@ handleCancel_fn = function() {
|
|
|
40100
40101
|
};
|
|
40101
40102
|
customElements.define("nine-diff-popup", NineDiffPopup);
|
|
40102
40103
|
const NineMu = {
|
|
40103
|
-
version: "0.1.
|
|
40104
|
+
version: "0.1.128",
|
|
40104
40105
|
init: (config2) => {
|
|
40105
40106
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40106
40107
|
}
|