@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/dist/nine-mu.js +8 -16
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChatManager.js +1 -10
package/package.json
CHANGED
|
@@ -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 :
|
|
165
|
+
routes : this.#getRoutes(),
|
|
175
166
|
current_path : "/group_member/student_management",
|
|
176
167
|
});
|
|
177
168
|
}
|