ide-assi 0.214.0 → 0.216.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.
- package/dist/bundle.cjs.js +12 -1
- package/dist/bundle.esm.js +12 -1
- package/dist/components/ideAi.js +11 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +11 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -193708,9 +193708,20 @@ class IdeAi
|
|
|
193708
193708
|
|
|
193709
193709
|
this.#createModel();
|
|
193710
193710
|
|
|
193711
|
-
await this.#what(userPrompt);
|
|
193711
|
+
const what = await this.#what(userPrompt);
|
|
193712
193712
|
this.#parent.addMessage("명령을 이해했습니다.");
|
|
193713
193713
|
|
|
193714
|
+
console.log(what);
|
|
193715
|
+
|
|
193716
|
+
if (what.result === "1") {
|
|
193717
|
+
console.log("111");
|
|
193718
|
+
}
|
|
193719
|
+
else if (what.result === "2") {
|
|
193720
|
+
console.log("222");
|
|
193721
|
+
}
|
|
193722
|
+
|
|
193723
|
+
|
|
193724
|
+
|
|
193714
193725
|
const where = await this.#where(userPrompt, this.#getMenuInfo(), await this.#getTableList());
|
|
193715
193726
|
this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.");
|
|
193716
193727
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193704,9 +193704,20 @@ class IdeAi
|
|
|
193704
193704
|
|
|
193705
193705
|
this.#createModel();
|
|
193706
193706
|
|
|
193707
|
-
await this.#what(userPrompt);
|
|
193707
|
+
const what = await this.#what(userPrompt);
|
|
193708
193708
|
this.#parent.addMessage("명령을 이해했습니다.");
|
|
193709
193709
|
|
|
193710
|
+
console.log(what);
|
|
193711
|
+
|
|
193712
|
+
if (what.result === "1") {
|
|
193713
|
+
console.log("111");
|
|
193714
|
+
}
|
|
193715
|
+
else if (what.result === "2") {
|
|
193716
|
+
console.log("222");
|
|
193717
|
+
}
|
|
193718
|
+
|
|
193719
|
+
|
|
193720
|
+
|
|
193710
193721
|
const where = await this.#where(userPrompt, this.#getMenuInfo(), await this.#getTableList());
|
|
193711
193722
|
this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.");
|
|
193712
193723
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -295,6 +295,17 @@ export class IdeAi
|
|
|
295
295
|
const what = await this.#what(userPrompt);
|
|
296
296
|
this.#parent.addMessage("명령을 이해했습니다.");
|
|
297
297
|
|
|
298
|
+
console.log(what);
|
|
299
|
+
|
|
300
|
+
if (what.result === "1") {
|
|
301
|
+
console.log("111")
|
|
302
|
+
}
|
|
303
|
+
else if (what.result === "2") {
|
|
304
|
+
console.log("222")
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
298
309
|
const where = await this.#where(userPrompt, this.#getMenuInfo(), await this.#getTableList());
|
|
299
310
|
this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.")
|
|
300
311
|
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -295,6 +295,17 @@ export class IdeAi
|
|
|
295
295
|
const what = await this.#what(userPrompt);
|
|
296
296
|
this.#parent.addMessage("명령을 이해했습니다.");
|
|
297
297
|
|
|
298
|
+
console.log(what);
|
|
299
|
+
|
|
300
|
+
if (what.result === "1") {
|
|
301
|
+
console.log("111")
|
|
302
|
+
}
|
|
303
|
+
else if (what.result === "2") {
|
|
304
|
+
console.log("222")
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
298
309
|
const where = await this.#where(userPrompt, this.#getMenuInfo(), await this.#getTableList());
|
|
299
310
|
this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.")
|
|
300
311
|
|