@nine-lab/nine-mu 0.1.180 → 0.1.182

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.180",
3
+ "version": "0.1.182",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -139,16 +139,7 @@ export class NineChatManager {
139
139
 
140
140
 
141
141
 
142
- handleChatSubmit = async v => {
143
-
144
- const routes = await this.#getRoutes();
145
142
 
146
- return await this.#callTool("system-brain", {
147
- user_input : v,
148
- routes : routes,
149
- current_path : "/group_member/student_management",
150
- });
151
- }
152
143
 
153
144
  #chatHistory = []; // 💡 이전 대화들을 저장할 메모리 창고
154
145
 
@@ -171,7 +162,7 @@ export class NineChatManager {
171
162
  return await this.#callTool("system-brain", {
172
163
  user_input : v,
173
164
  chat_history: formattedHistory,
174
- routes : routes,
165
+ routes : this.#getRoutes(),
175
166
  current_path : "/group_member/student_management",
176
167
  });
177
168
  }