@nine-lab/nine-mu 0.1.219 → 0.1.220
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 +10 -8
- 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/NineChat.js +9 -3
package/package.json
CHANGED
|
@@ -112,11 +112,17 @@ export class NineChat extends HTMLElement {
|
|
|
112
112
|
this.#manager.addChatHistory(parsed.message);
|
|
113
113
|
this.#$nineChatMessage.add("ai", parsed.message);
|
|
114
114
|
|
|
115
|
-
trace.log(parsed.action);
|
|
115
|
+
//trace.log(parsed.action);
|
|
116
116
|
//"source-missing"
|
|
117
|
-
trace.log(parsed.data);
|
|
117
|
+
//trace.log(parsed.data);
|
|
118
|
+
|
|
119
|
+
if (parsed.action.selected_tool === "source-missing") {
|
|
120
|
+
nine.alert("메뉴 정리를 위한 라우터 정보 저장 화면으로 이동합니다.").then(res => {
|
|
121
|
+
this.#showDiff(parsed.action.params.routes, parsed.data, "json");
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
|
|
118
125
|
|
|
119
|
-
this.#showDiff(parsed.action.params.routes, parsed.data, "json");
|
|
120
126
|
|
|
121
127
|
|
|
122
128
|
// 💡 만약 intent가 EXECUTE_TOOL이거나 NAVIGATE일 때 프론트에서
|