ide-assi 0.511.0 → 0.513.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
|
@@ -202036,7 +202036,7 @@ class IdeAi
|
|
|
202036
202036
|
#invoke = async (path, params) => {
|
|
202037
202037
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
202038
202038
|
|
|
202039
|
-
|
|
202039
|
+
console.log(prompt);
|
|
202040
202040
|
|
|
202041
202041
|
try {
|
|
202042
202042
|
const response = await this.#model.invoke([
|
|
@@ -202075,6 +202075,7 @@ class IdeAi
|
|
|
202075
202075
|
"tableDefinitions": tableDefinitions,
|
|
202076
202076
|
});
|
|
202077
202077
|
|
|
202078
|
+
console.log("=======================================================");
|
|
202078
202079
|
console.log(o);
|
|
202079
202080
|
console.log( Object.prototype.toString.call(o));
|
|
202080
202081
|
console.log(o.hasOwnProperty("result"));
|
|
@@ -202973,10 +202974,8 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202973
202974
|
});
|
|
202974
202975
|
}
|
|
202975
202976
|
|
|
202976
|
-
console.log(params);
|
|
202977
|
-
|
|
202978
202977
|
api.post(`/api/source/generateRealFile`, { list: params }).then(res => {
|
|
202979
|
-
ninegrid.
|
|
202978
|
+
ninegrid.alert("소스를 변경하였습니다.");
|
|
202980
202979
|
});
|
|
202981
202980
|
}
|
|
202982
202981
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202032,7 +202032,7 @@ class IdeAi
|
|
|
202032
202032
|
#invoke = async (path, params) => {
|
|
202033
202033
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
202034
202034
|
|
|
202035
|
-
|
|
202035
|
+
console.log(prompt);
|
|
202036
202036
|
|
|
202037
202037
|
try {
|
|
202038
202038
|
const response = await this.#model.invoke([
|
|
@@ -202071,6 +202071,7 @@ class IdeAi
|
|
|
202071
202071
|
"tableDefinitions": tableDefinitions,
|
|
202072
202072
|
});
|
|
202073
202073
|
|
|
202074
|
+
console.log("=======================================================");
|
|
202074
202075
|
console.log(o);
|
|
202075
202076
|
console.log( Object.prototype.toString.call(o));
|
|
202076
202077
|
console.log(o.hasOwnProperty("result"));
|
|
@@ -202969,10 +202970,8 @@ class IdeDiffPopup extends HTMLElement
|
|
|
202969
202970
|
});
|
|
202970
202971
|
}
|
|
202971
202972
|
|
|
202972
|
-
console.log(params);
|
|
202973
|
-
|
|
202974
202973
|
api.post(`/api/source/generateRealFile`, { list: params }).then(res => {
|
|
202975
|
-
ninegrid.
|
|
202974
|
+
ninegrid.alert("소스를 변경하였습니다.");
|
|
202976
202975
|
});
|
|
202977
202976
|
}
|
|
202978
202977
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -188,7 +188,7 @@ export class IdeAi
|
|
|
188
188
|
#invoke = async (path, params) => {
|
|
189
189
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
190
190
|
|
|
191
|
-
|
|
191
|
+
console.log(prompt);
|
|
192
192
|
|
|
193
193
|
try {
|
|
194
194
|
const response = await this.#model.invoke([
|
|
@@ -227,6 +227,7 @@ export class IdeAi
|
|
|
227
227
|
"tableDefinitions": tableDefinitions,
|
|
228
228
|
});
|
|
229
229
|
|
|
230
|
+
console.log("=======================================================");
|
|
230
231
|
console.log(o);
|
|
231
232
|
console.log( Object.prototype.toString.call(o));
|
|
232
233
|
console.log(o.hasOwnProperty("result"));
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -188,7 +188,7 @@ export class IdeAi
|
|
|
188
188
|
#invoke = async (path, params) => {
|
|
189
189
|
const prompt = await IdeUtils.generatePrompt(path, params);
|
|
190
190
|
|
|
191
|
-
|
|
191
|
+
console.log(prompt);
|
|
192
192
|
|
|
193
193
|
try {
|
|
194
194
|
const response = await this.#model.invoke([
|
|
@@ -227,6 +227,7 @@ export class IdeAi
|
|
|
227
227
|
"tableDefinitions": tableDefinitions,
|
|
228
228
|
});
|
|
229
229
|
|
|
230
|
+
console.log("=======================================================");
|
|
230
231
|
console.log(o);
|
|
231
232
|
console.log( Object.prototype.toString.call(o));
|
|
232
233
|
console.log(o.hasOwnProperty("result"));
|