@nine-lab/nine-mu 0.1.247 → 0.1.249
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
|
@@ -171,12 +171,15 @@ export class NineChatManager {
|
|
|
171
171
|
|
|
172
172
|
trace.log(unmappedRoutes);
|
|
173
173
|
|
|
174
|
-
|
|
174
|
+
const a = await this.#callTool("generate-source-brain", {
|
|
175
175
|
//user_input: `다음 미개발 라우트에 대한 백엔드 소스코드(Controller, Service, MyBatis)를 생성해줘.`,
|
|
176
176
|
//chat_history: "",
|
|
177
177
|
routes: unmappedRoutes, // 미개발된 해당 라우트 정보 객체
|
|
178
178
|
//current_path: route.path, // 현재 생성 기준 패스 명시
|
|
179
179
|
});
|
|
180
180
|
|
|
181
|
+
trace.log(a);
|
|
182
|
+
|
|
183
|
+
return a;
|
|
181
184
|
};
|
|
182
185
|
}
|