ide-assi 0.263.0 → 0.264.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 +1 -2
- package/dist/bundle.esm.js +1 -2
- package/dist/components/ideAi.js +1 -2
- package/package.json +1 -1
- package/src/components/ideAi.js +1 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -193603,6 +193603,7 @@ class IdeAi
|
|
|
193603
193603
|
#invoke = async (path, params) => {
|
|
193604
193604
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
193605
193605
|
|
|
193606
|
+
console.log("=======", this.#model);
|
|
193606
193607
|
try {
|
|
193607
193608
|
const response = await this.#model.invoke([
|
|
193608
193609
|
//new SystemMessage(systemMessage),
|
|
@@ -193620,8 +193621,6 @@ class IdeAi
|
|
|
193620
193621
|
#what = async (userPrompt) => {
|
|
193621
193622
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
193622
193623
|
|
|
193623
|
-
console.log(o);
|
|
193624
|
-
|
|
193625
193624
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193626
193625
|
if (o.result === "0") throw new Error(o.reason);
|
|
193627
193626
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193599,6 +193599,7 @@ class IdeAi
|
|
|
193599
193599
|
#invoke = async (path, params) => {
|
|
193600
193600
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
193601
193601
|
|
|
193602
|
+
console.log("=======", this.#model);
|
|
193602
193603
|
try {
|
|
193603
193604
|
const response = await this.#model.invoke([
|
|
193604
193605
|
//new SystemMessage(systemMessage),
|
|
@@ -193616,8 +193617,6 @@ class IdeAi
|
|
|
193616
193617
|
#what = async (userPrompt) => {
|
|
193617
193618
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
193618
193619
|
|
|
193619
|
-
console.log(o);
|
|
193620
|
-
|
|
193621
193620
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
193622
193621
|
if (o.result === "0") throw new Error(o.reason);
|
|
193623
193622
|
}
|
package/dist/components/ideAi.js
CHANGED
|
@@ -187,6 +187,7 @@ export class IdeAi
|
|
|
187
187
|
#invoke = async (path, params) => {
|
|
188
188
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
189
189
|
|
|
190
|
+
console.log("=======", this.#model);
|
|
190
191
|
try {
|
|
191
192
|
const response = await this.#model.invoke([
|
|
192
193
|
//new SystemMessage(systemMessage),
|
|
@@ -204,8 +205,6 @@ export class IdeAi
|
|
|
204
205
|
#what = async (userPrompt) => {
|
|
205
206
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
206
207
|
|
|
207
|
-
console.log(o);
|
|
208
|
-
|
|
209
208
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
210
209
|
if (o.result === "0") throw new Error(o.reason);
|
|
211
210
|
}
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -187,6 +187,7 @@ export class IdeAi
|
|
|
187
187
|
#invoke = async (path, params) => {
|
|
188
188
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
189
189
|
|
|
190
|
+
console.log("=======", this.#model);
|
|
190
191
|
try {
|
|
191
192
|
const response = await this.#model.invoke([
|
|
192
193
|
//new SystemMessage(systemMessage),
|
|
@@ -204,8 +205,6 @@ export class IdeAi
|
|
|
204
205
|
#what = async (userPrompt) => {
|
|
205
206
|
const o = await this.#invoke('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
|
|
206
207
|
|
|
207
|
-
console.log(o);
|
|
208
|
-
|
|
209
208
|
if (Object.prototype.toString.call(o) === "[object Object]" && o.hasOwnProperty("result")) {
|
|
210
209
|
if (o.result === "0") throw new Error(o.reason);
|
|
211
210
|
}
|