ide-assi 0.153.0 → 0.154.0

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.
@@ -193524,7 +193524,7 @@ class IdeAi
193524
193524
 
193525
193525
  #invoke = async (path, params) => {
193526
193526
  const prompt = await IdeUtils.generatePrompt(path, params);
193527
- console.log(prompt);
193527
+
193528
193528
  const response = await this.#model.invoke([
193529
193529
  //new SystemMessage(systemMessage),
193530
193530
  new HumanMessage(prompt),
@@ -193647,7 +193647,7 @@ console.log(prompt);
193647
193647
  userPrompt: userPrompt,
193648
193648
  menuUrl: where.menu.url,
193649
193649
  controllerSource: controllerSrc,
193650
- mybatisXmlSource: mybatisXmlSource,
193650
+ tableDefinitions: columnInfo,
193651
193651
  });
193652
193652
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
193653
193653
 
@@ -193520,7 +193520,7 @@ class IdeAi
193520
193520
 
193521
193521
  #invoke = async (path, params) => {
193522
193522
  const prompt = await IdeUtils.generatePrompt(path, params);
193523
- console.log(prompt);
193523
+
193524
193524
  const response = await this.#model.invoke([
193525
193525
  //new SystemMessage(systemMessage),
193526
193526
  new HumanMessage(prompt),
@@ -193643,7 +193643,7 @@ console.log(prompt);
193643
193643
  userPrompt: userPrompt,
193644
193644
  menuUrl: where.menu.url,
193645
193645
  controllerSource: controllerSrc,
193646
- mybatisXmlSource: mybatisXmlSource,
193646
+ tableDefinitions: columnInfo,
193647
193647
  });
193648
193648
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
193649
193649
 
@@ -176,7 +176,7 @@ export class IdeAi
176
176
 
177
177
  #invoke = async (path, params) => {
178
178
  const prompt = await IdeUtils.generatePrompt(path, params);
179
- console.log(prompt);
179
+
180
180
  const response = await this.#model.invoke([
181
181
  //new SystemMessage(systemMessage),
182
182
  new HumanMessage(prompt),
@@ -313,7 +313,7 @@ console.log(prompt);
313
313
  userPrompt: userPrompt,
314
314
  menuUrl: where.menu.url,
315
315
  controllerSource: controllerSrc,
316
- mybatisXmlSource: mybatisXmlSource,
316
+ tableDefinitions: columnInfo,
317
317
  });
318
318
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
319
319
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.153.0",
4
+ "version": "0.154.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -176,7 +176,7 @@ export class IdeAi
176
176
 
177
177
  #invoke = async (path, params) => {
178
178
  const prompt = await IdeUtils.generatePrompt(path, params);
179
- console.log(prompt);
179
+
180
180
  const response = await this.#model.invoke([
181
181
  //new SystemMessage(systemMessage),
182
182
  new HumanMessage(prompt),
@@ -313,7 +313,7 @@ console.log(prompt);
313
313
  userPrompt: userPrompt,
314
314
  menuUrl: where.menu.url,
315
315
  controllerSource: controllerSrc,
316
- mybatisXmlSource: mybatisXmlSource,
316
+ tableDefinitions: columnInfo,
317
317
  });
318
318
  this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
319
319