@nine-lab/nine-mu 0.1.243 → 0.1.244

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.243",
3
+ "version": "0.1.244",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -159,6 +159,8 @@ export class NineChatManager {
159
159
  // 1. 백엔드 Java 컨트롤러로 미개발 라우트 분석 요청
160
160
  const res = await api.post("/nine-mu/config/getUnmappedRoutes", { routes: routes });
161
161
 
162
+ trace.log(res);
163
+
162
164
  // 백엔드 반환 데이터 안전하게 추출 (res.data 구조 확인 필요)
163
165
  const unmappedRoutes = res?.data?.unmappedRoutes || res?.unmappedRoutes || [];
164
166
 
@@ -167,6 +169,8 @@ export class NineChatManager {
167
169
  return;
168
170
  }
169
171
 
172
+ trace.log(unmappedRoutes);
173
+
170
174
  return await this.#callTool("generator-source-brain", {
171
175
  //user_input: `다음 미개발 라우트에 대한 백엔드 소스코드(Controller, Service, MyBatis)를 생성해줘.`,
172
176
  //chat_history: "",