@nine-lab/nine-mu 0.1.133 → 0.1.135

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.133",
3
+ "version": "0.1.135",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -172,7 +172,7 @@
172
172
  }
173
173
 
174
174
  .foot {
175
- margin-bottom: 32px;
175
+ margin-bottom: 4px;
176
176
  width: 100%;
177
177
  height: 200px;
178
178
  --background: #f0f0f0;
@@ -198,6 +198,8 @@
198
198
  border-radius: 8px;
199
199
  resize: none;
200
200
  padding: 8px;
201
+ background: white;
202
+ color: #333;
201
203
  }
202
204
  textarea:hover {
203
205
  border: 1px solid #999;
@@ -30,7 +30,7 @@ export class NineChat extends HTMLElement {
30
30
  this.#render();
31
31
  this.#initInteractions(); // UI 토글 로직
32
32
  this.#initActions(); // 엔터 시 실행 로직
33
- this.#initMcp();
33
+ //this.#initMcp();
34
34
 
35
35
  const res = await api.post("/nine-mu/config/get", {});
36
36
  this.#routesPath = res?.userDir + "/" + this.#packageName + "/public/prompts/data/routes.json";
@@ -81,8 +81,8 @@ export class NineChat extends HTMLElement {
81
81
  const response = await this.#mcpClient.callTool({
82
82
  name: "ask_nine_engine",
83
83
  arguments: {
84
- prompt: text,
85
- routes: currentRoutes // 현재 화면의 메뉴 정보
84
+ prompt: userInput,
85
+ routes: [] // 현재 화면의 메뉴 정보
86
86
  }
87
87
  });
88
88