ide-assi 0.720.0 → 0.722.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
|
@@ -202494,6 +202494,8 @@ class IdeUtils
|
|
|
202494
202494
|
template += await fetch(path).then(res => res.text());
|
|
202495
202495
|
}
|
|
202496
202496
|
|
|
202497
|
+
console.log(paths, template);
|
|
202498
|
+
|
|
202497
202499
|
return await new PromptTemplate({
|
|
202498
202500
|
template,
|
|
202499
202501
|
inputVariables: Object.keys(params),
|
|
@@ -202682,7 +202684,6 @@ class IdeAi
|
|
|
202682
202684
|
#generateTmplFile = async (promptFile, generateFileName, params) => {
|
|
202683
202685
|
|
|
202684
202686
|
let src = await this.#invoke(promptFile, params);
|
|
202685
|
-
|
|
202686
202687
|
if (src.endsWith("```")) {
|
|
202687
202688
|
src = src.slice(0, -3);
|
|
202688
202689
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202490,6 +202490,8 @@ class IdeUtils
|
|
|
202490
202490
|
template += await fetch(path).then(res => res.text());
|
|
202491
202491
|
}
|
|
202492
202492
|
|
|
202493
|
+
console.log(paths, template);
|
|
202494
|
+
|
|
202493
202495
|
return await new PromptTemplate({
|
|
202494
202496
|
template,
|
|
202495
202497
|
inputVariables: Object.keys(params),
|
|
@@ -202678,7 +202680,6 @@ class IdeAi
|
|
|
202678
202680
|
#generateTmplFile = async (promptFile, generateFileName, params) => {
|
|
202679
202681
|
|
|
202680
202682
|
let src = await this.#invoke(promptFile, params);
|
|
202681
|
-
|
|
202682
202683
|
if (src.endsWith("```")) {
|
|
202683
202684
|
src = src.slice(0, -3);
|
|
202684
202685
|
}
|
package/dist/components/ideAi.js
CHANGED
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED