@nine-lab/nine-mu 0.1.167 → 0.1.168
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
|
@@ -124,10 +124,9 @@ export class NineChatManager {
|
|
|
124
124
|
async #callTool(toolName, args = {}) {
|
|
125
125
|
|
|
126
126
|
this.#updateStatus("AI 분석 중...");
|
|
127
|
-
console.log(22222);
|
|
128
127
|
|
|
129
128
|
const response = this.#mcpClient.callTool({ name: toolName, arguments: args });
|
|
130
|
-
|
|
129
|
+
|
|
131
130
|
return response;
|
|
132
131
|
/**
|
|
133
132
|
.then((res) => {
|
|
@@ -147,16 +146,12 @@ export class NineChatManager {
|
|
|
147
146
|
|
|
148
147
|
const routes = [];
|
|
149
148
|
|
|
150
|
-
console.log(1111111);
|
|
151
|
-
|
|
152
149
|
const response = await this.#callTool("system-brain", {
|
|
153
150
|
user_input : el.value.trim(),
|
|
154
151
|
routes : routes,
|
|
155
152
|
current_path : "/group_member/student_management",
|
|
156
153
|
});
|
|
157
154
|
|
|
158
|
-
console.log(44444);
|
|
159
|
-
|
|
160
155
|
return response;
|
|
161
156
|
}
|
|
162
157
|
}
|