@nine-lab/nine-mu 0.1.167 → 0.1.168

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.167",
3
+ "version": "0.1.168",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -102,6 +102,8 @@ export class NineChat extends HTMLElement {
102
102
  nine.alert("메시지 전송 중 오류가 발생했습니다.").rgb().shake();
103
103
  }
104
104
 
105
+ console.log(e.target);
106
+
105
107
  e.target.removeAttribute('disabled');
106
108
  }
107
109
  });
@@ -124,10 +124,9 @@ export class NineChatManager {
124
124
  async #callTool(toolName, args = {}) {
125
125
 
126
126
  this.#updateStatus("AI 분석 중...");
127
- console.log(22222);
128
127
 
129
128
  const response = this.#mcpClient.callTool({ name: toolName, arguments: args });
130
- console.log(333333);
129
+
131
130
  return response;
132
131
  /**
133
132
  .then((res) => {
@@ -147,16 +146,12 @@ export class NineChatManager {
147
146
 
148
147
  const routes = [];
149
148
 
150
- console.log(1111111);
151
-
152
149
  const response = await this.#callTool("system-brain", {
153
150
  user_input : el.value.trim(),
154
151
  routes : routes,
155
152
  current_path : "/group_member/student_management",
156
153
  });
157
154
 
158
- console.log(44444);
159
-
160
155
  return response;
161
156
  }
162
157
  }