ide-assi 0.573.0 → 0.574.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
CHANGED
|
@@ -202502,7 +202502,7 @@ console.log(el, href, title);
|
|
|
202502
202502
|
const invoke = async (path, params) => {
|
|
202503
202503
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
202504
202504
|
|
|
202505
|
-
console.log(prompt);
|
|
202505
|
+
//console.log(prompt);
|
|
202506
202506
|
|
|
202507
202507
|
try {
|
|
202508
202508
|
const model = new ChatGoogleGenerativeAI({ model: "gemini-2.5-flash", apiKey: apiKey, temperature: 0,});
|
|
@@ -202517,8 +202517,6 @@ console.log(el, href, title);
|
|
|
202517
202517
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
202518
202518
|
}
|
|
202519
202519
|
|
|
202520
|
-
console.log(r);
|
|
202521
|
-
|
|
202522
202520
|
return r;
|
|
202523
202521
|
}
|
|
202524
202522
|
catch (error) {
|
|
@@ -202714,6 +202712,7 @@ class IdeAssi extends HTMLElement
|
|
|
202714
202712
|
const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
|
|
202715
202713
|
tipPopup.popup();
|
|
202716
202714
|
|
|
202715
|
+
/**
|
|
202717
202716
|
try {
|
|
202718
202717
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
|
202719
202718
|
tipPopup.close();
|
|
@@ -202725,7 +202724,7 @@ class IdeAssi extends HTMLElement
|
|
|
202725
202724
|
tipPopup.close();
|
|
202726
202725
|
console.error(error);
|
|
202727
202726
|
elAiChat.add("ai", String(error).replace("Error:", ""));
|
|
202728
|
-
}
|
|
202727
|
+
} */
|
|
202729
202728
|
|
|
202730
202729
|
this.#ing = false;
|
|
202731
202730
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202498,7 +202498,7 @@ console.log(el, href, title);
|
|
|
202498
202498
|
const invoke = async (path, params) => {
|
|
202499
202499
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
202500
202500
|
|
|
202501
|
-
console.log(prompt);
|
|
202501
|
+
//console.log(prompt);
|
|
202502
202502
|
|
|
202503
202503
|
try {
|
|
202504
202504
|
const model = new ChatGoogleGenerativeAI({ model: "gemini-2.5-flash", apiKey: apiKey, temperature: 0,});
|
|
@@ -202513,8 +202513,6 @@ console.log(el, href, title);
|
|
|
202513
202513
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
202514
202514
|
}
|
|
202515
202515
|
|
|
202516
|
-
console.log(r);
|
|
202517
|
-
|
|
202518
202516
|
return r;
|
|
202519
202517
|
}
|
|
202520
202518
|
catch (error) {
|
|
@@ -202710,6 +202708,7 @@ class IdeAssi extends HTMLElement
|
|
|
202710
202708
|
const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
|
|
202711
202709
|
tipPopup.popup();
|
|
202712
202710
|
|
|
202711
|
+
/**
|
|
202713
202712
|
try {
|
|
202714
202713
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
|
202715
202714
|
tipPopup.close();
|
|
@@ -202721,7 +202720,7 @@ class IdeAssi extends HTMLElement
|
|
|
202721
202720
|
tipPopup.close();
|
|
202722
202721
|
console.error(error);
|
|
202723
202722
|
elAiChat.add("ai", String(error).replace("Error:", ""));
|
|
202724
|
-
}
|
|
202723
|
+
} */
|
|
202725
202724
|
|
|
202726
202725
|
this.#ing = false;
|
|
202727
202726
|
}
|
package/dist/components/ideAi.js
CHANGED
|
@@ -636,7 +636,7 @@ console.log(el, href, title);
|
|
|
636
636
|
const invoke = async (path, params) => {
|
|
637
637
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
638
638
|
|
|
639
|
-
console.log(prompt);
|
|
639
|
+
//console.log(prompt);
|
|
640
640
|
|
|
641
641
|
try {
|
|
642
642
|
const model = new ChatGoogleGenerativeAI({ model: "gemini-2.5-flash", apiKey: apiKey, temperature: 0,});
|
|
@@ -651,8 +651,6 @@ console.log(el, href, title);
|
|
|
651
651
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
652
652
|
}
|
|
653
653
|
|
|
654
|
-
console.log(r);
|
|
655
|
-
|
|
656
654
|
return r;
|
|
657
655
|
}
|
|
658
656
|
catch (error) {
|
|
@@ -172,6 +172,7 @@ export class IdeAssi extends HTMLElement
|
|
|
172
172
|
const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
|
|
173
173
|
tipPopup.popup();
|
|
174
174
|
|
|
175
|
+
/**
|
|
175
176
|
try {
|
|
176
177
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
|
177
178
|
tipPopup.close();
|
|
@@ -183,7 +184,7 @@ export class IdeAssi extends HTMLElement
|
|
|
183
184
|
tipPopup.close();
|
|
184
185
|
console.error(error);
|
|
185
186
|
elAiChat.add("ai", String(error).replace("Error:", ""));
|
|
186
|
-
}
|
|
187
|
+
} */
|
|
187
188
|
|
|
188
189
|
this.#ing = false;
|
|
189
190
|
}
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -636,7 +636,7 @@ console.log(el, href, title);
|
|
|
636
636
|
const invoke = async (path, params) => {
|
|
637
637
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
638
638
|
|
|
639
|
-
console.log(prompt);
|
|
639
|
+
//console.log(prompt);
|
|
640
640
|
|
|
641
641
|
try {
|
|
642
642
|
const model = new ChatGoogleGenerativeAI({ model: "gemini-2.5-flash", apiKey: apiKey, temperature: 0,});
|
|
@@ -651,8 +651,6 @@ console.log(el, href, title);
|
|
|
651
651
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
652
652
|
}
|
|
653
653
|
|
|
654
|
-
console.log(r);
|
|
655
|
-
|
|
656
654
|
return r;
|
|
657
655
|
}
|
|
658
656
|
catch (error) {
|
|
@@ -172,6 +172,7 @@ export class IdeAssi extends HTMLElement
|
|
|
172
172
|
const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
|
|
173
173
|
tipPopup.popup();
|
|
174
174
|
|
|
175
|
+
/**
|
|
175
176
|
try {
|
|
176
177
|
const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
|
|
177
178
|
tipPopup.close();
|
|
@@ -183,7 +184,7 @@ export class IdeAssi extends HTMLElement
|
|
|
183
184
|
tipPopup.close();
|
|
184
185
|
console.error(error);
|
|
185
186
|
elAiChat.add("ai", String(error).replace("Error:", ""));
|
|
186
|
-
}
|
|
187
|
+
} */
|
|
187
188
|
|
|
188
189
|
this.#ing = false;
|
|
189
190
|
}
|