ide-assi 0.162.0 → 0.164.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 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/components/ideAi.js +2 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -193545,6 +193545,8 @@ 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
|
+
|
|
193548
193550
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193549
193551
|
if (o.result === "0") throw new Error(o.reason);
|
|
193550
193552
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193541,6 +193541,8 @@ 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
|
+
|
|
193544
193546
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193545
193547
|
if (o.result === "0") throw new Error(o.reason);
|
|
193546
193548
|
}
|
package/dist/components/ideAi.js
CHANGED
|
@@ -196,6 +196,8 @@ 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
|
+
|
|
199
201
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
200
202
|
if (o.result === "0") throw new Error(o.reason);
|
|
201
203
|
}
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -196,6 +196,8 @@ 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
|
+
|
|
199
201
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
200
202
|
if (o.result === "0") throw new Error(o.reason);
|
|
201
203
|
}
|