@nine-lab/nine-mu 0.1.255 β†’ 0.1.257

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.255",
3
+ "version": "0.1.257",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -44,7 +44,7 @@ export class NineChatManager {
44
44
 
45
45
  //trace.log(this.#mcpClient);
46
46
 
47
- this.#mcpClient.connect(transport, {timeout: 300000})
47
+ this.#mcpClient.connect(transport, {timeout: 3000000})
48
48
  .then( async () => {
49
49
  this.#updateStatus("βœ… MCP Connected");
50
50
 
@@ -68,7 +68,7 @@ export class NineChatManager {
68
68
  data: z.any().optional()
69
69
  })
70
70
  });
71
-
71
+ //
72
72
  this.#mcpClient.setNotificationHandler(
73
73
  customNotificationSchema, // πŸ‘ˆ 껍데기 ν†΅κ³Όμš© μ»€μŠ€ν…€ μŠ€ν‚€λ§ˆ
74
74
  (notification) => {
@@ -114,7 +114,7 @@ export class NineChatManager {
114
114
  return this.#mcpClient.callTool(
115
115
  { name: toolName, arguments: args },
116
116
  undefined, // ν•„μš” μ‹œ extra λ³€μˆ˜ 자리 (κΈ°λ³Έκ°’ undefined)
117
- { timeout: 300000 } // πŸ’‘ κ°œλ³„ μš”μ²­ νƒ€μž„μ•„μ›ƒμ„ 5λΆ„μœΌλ‘œ ν™•μž₯
117
+ { timeout: 3000000 } // πŸ’‘ κ°œλ³„ μš”μ²­ νƒ€μž„μ•„μ›ƒμ„ 5λΆ„μœΌλ‘œ ν™•μž₯
118
118
  );
119
119
  }
120
120