ide-assi 0.164.0 → 0.166.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 +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/components/ideAi.js +2 -2
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -193545,8 +193545,6 @@ class IdeAi
|
|
|
193545
193545
|
#what = async (userPrompt) => {
|
|
193546
193546
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
193547
193547
|
|
|
193548
|
-
console.log(o);
|
|
193549
|
-
|
|
193550
193548
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193551
193549
|
if (o.result === "0") throw new Error(o.reason);
|
|
193552
193550
|
}
|
|
@@ -193565,6 +193563,8 @@ class IdeAi
|
|
|
193565
193563
|
"tableDefinitions": tableDefinitions,
|
|
193566
193564
|
});
|
|
193567
193565
|
|
|
193566
|
+
console.log(o);
|
|
193567
|
+
|
|
193568
193568
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193569
193569
|
if (o.result === "0") throw new Error(o.reason);
|
|
193570
193570
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193541,8 +193541,6 @@ class IdeAi
|
|
|
193541
193541
|
#what = async (userPrompt) => {
|
|
193542
193542
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
193543
193543
|
|
|
193544
|
-
console.log(o);
|
|
193545
|
-
|
|
193546
193544
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193547
193545
|
if (o.result === "0") throw new Error(o.reason);
|
|
193548
193546
|
}
|
|
@@ -193561,6 +193559,8 @@ class IdeAi
|
|
|
193561
193559
|
"tableDefinitions": tableDefinitions,
|
|
193562
193560
|
});
|
|
193563
193561
|
|
|
193562
|
+
console.log(o);
|
|
193563
|
+
|
|
193564
193564
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193565
193565
|
if (o.result === "0") throw new Error(o.reason);
|
|
193566
193566
|
}
|
package/dist/components/ideAi.js
CHANGED
|
@@ -196,8 +196,6 @@ export class IdeAi
|
|
|
196
196
|
#what = async (userPrompt) => {
|
|
197
197
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
198
198
|
|
|
199
|
-
console.log(o);
|
|
200
|
-
|
|
201
199
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
202
200
|
if (o.result === "0") throw new Error(o.reason);
|
|
203
201
|
}
|
|
@@ -216,6 +214,8 @@ export class IdeAi
|
|
|
216
214
|
"tableDefinitions": tableDefinitions,
|
|
217
215
|
});
|
|
218
216
|
|
|
217
|
+
console.log(o);
|
|
218
|
+
|
|
219
219
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
220
220
|
if (o.result === "0") throw new Error(o.reason);
|
|
221
221
|
}
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -196,8 +196,6 @@ export class IdeAi
|
|
|
196
196
|
#what = async (userPrompt) => {
|
|
197
197
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
198
198
|
|
|
199
|
-
console.log(o);
|
|
200
|
-
|
|
201
199
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
202
200
|
if (o.result === "0") throw new Error(o.reason);
|
|
203
201
|
}
|
|
@@ -216,6 +214,8 @@ export class IdeAi
|
|
|
216
214
|
"tableDefinitions": tableDefinitions,
|
|
217
215
|
});
|
|
218
216
|
|
|
217
|
+
console.log(o);
|
|
218
|
+
|
|
219
219
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
220
220
|
if (o.result === "0") throw new Error(o.reason);
|
|
221
221
|
}
|