@nine-lab/nine-mu 0.1.220 → 0.1.222

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.220",
3
+ "version": "0.1.222",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -1021,7 +1021,7 @@
1021
1021
  display: -webkit-box;
1022
1022
  -webkit-line-clamp: 3;
1023
1023
  -webkit-box-orient: vertical;
1024
- overflow: hidden;
1024
+ overflow: auto;
1025
1025
  padding: 0;
1026
1026
  flex-grow: 1;
1027
1027
  /* 줄바꿈 강제 적용 */
@@ -116,7 +116,7 @@ export class NineChat extends HTMLElement {
116
116
  //"source-missing"
117
117
  //trace.log(parsed.data);
118
118
 
119
- if (parsed.action.selected_tool === "source-missing") {
119
+ if (parsed?.action?.selected_tool === "source-missing") {
120
120
  nine.alert("메뉴 정리를 위한 라우터 정보 저장 화면으로 이동합니다.").then(res => {
121
121
  this.#showDiff(parsed.action.params.routes, parsed.data, "json");
122
122
  });
@@ -38,7 +38,8 @@ export class NineChatManager {
38
38
  capabilities: {
39
39
  tools: {},
40
40
  logging: {}
41
- }
41
+ },
42
+ timeout: 300000 // 5분
42
43
  });
43
44
 
44
45
  trace.log(this.#mcpClient);