ide-assi 0.518.0 → 0.520.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 +4 -2
- package/dist/bundle.esm.js +4 -2
- package/dist/components/ideAi.js +4 -2
- package/package.json +1 -1
- package/src/components/ideAi.js +4 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -202089,10 +202089,12 @@ class IdeAi
|
|
|
202089
202089
|
|
|
202090
202090
|
#where = async (userPrompt, menuList, tableDefinitions) => {
|
|
202091
202091
|
|
|
202092
|
+
console.log(menuList, tableDefinitions, JSON.stringify(menuList), JSON.stringify(tableDefinitions));
|
|
202093
|
+
|
|
202092
202094
|
const o = await this.#invoke('/prompts/meta/C.스캐폴딩.txt', {
|
|
202093
202095
|
"userPrompt": userPrompt,
|
|
202094
|
-
"menuList": menuList,
|
|
202095
|
-
"tableDefinitions": tableDefinitions,
|
|
202096
|
+
"menuList": JSON.stringify(menuList),
|
|
202097
|
+
"tableDefinitions": JSON.stringify(tableDefinitions),
|
|
202096
202098
|
});
|
|
202097
202099
|
|
|
202098
202100
|
console.log("=======================================================");
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202085,10 +202085,12 @@ class IdeAi
|
|
|
202085
202085
|
|
|
202086
202086
|
#where = async (userPrompt, menuList, tableDefinitions) => {
|
|
202087
202087
|
|
|
202088
|
+
console.log(menuList, tableDefinitions, JSON.stringify(menuList), JSON.stringify(tableDefinitions));
|
|
202089
|
+
|
|
202088
202090
|
const o = await this.#invoke('/prompts/meta/C.스캐폴딩.txt', {
|
|
202089
202091
|
"userPrompt": userPrompt,
|
|
202090
|
-
"menuList": menuList,
|
|
202091
|
-
"tableDefinitions": tableDefinitions,
|
|
202092
|
+
"menuList": JSON.stringify(menuList),
|
|
202093
|
+
"tableDefinitions": JSON.stringify(tableDefinitions),
|
|
202092
202094
|
});
|
|
202093
202095
|
|
|
202094
202096
|
console.log("=======================================================");
|
package/dist/components/ideAi.js
CHANGED
|
@@ -221,10 +221,12 @@ export class IdeAi
|
|
|
221
221
|
|
|
222
222
|
#where = async (userPrompt, menuList, tableDefinitions) => {
|
|
223
223
|
|
|
224
|
+
console.log(menuList, tableDefinitions, JSON.stringify(menuList), JSON.stringify(tableDefinitions));
|
|
225
|
+
|
|
224
226
|
const o = await this.#invoke('/prompts/meta/C.스캐폴딩.txt', {
|
|
225
227
|
"userPrompt": userPrompt,
|
|
226
|
-
"menuList": menuList,
|
|
227
|
-
"tableDefinitions": tableDefinitions,
|
|
228
|
+
"menuList": JSON.stringify(menuList),
|
|
229
|
+
"tableDefinitions": JSON.stringify(tableDefinitions),
|
|
228
230
|
});
|
|
229
231
|
|
|
230
232
|
console.log("=======================================================");
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -221,10 +221,12 @@ export class IdeAi
|
|
|
221
221
|
|
|
222
222
|
#where = async (userPrompt, menuList, tableDefinitions) => {
|
|
223
223
|
|
|
224
|
+
console.log(menuList, tableDefinitions, JSON.stringify(menuList), JSON.stringify(tableDefinitions));
|
|
225
|
+
|
|
224
226
|
const o = await this.#invoke('/prompts/meta/C.스캐폴딩.txt', {
|
|
225
227
|
"userPrompt": userPrompt,
|
|
226
|
-
"menuList": menuList,
|
|
227
|
-
"tableDefinitions": tableDefinitions,
|
|
228
|
+
"menuList": JSON.stringify(menuList),
|
|
229
|
+
"tableDefinitions": JSON.stringify(tableDefinitions),
|
|
228
230
|
});
|
|
229
231
|
|
|
230
232
|
console.log("=======================================================");
|