ide-assi 0.688.0 → 0.689.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,9 +202494,12 @@ class IdeUtils
|
|
|
202494
202494
|
let template = "";//await fetch(path).then(res => res.text());
|
|
202495
202495
|
|
|
202496
202496
|
for (let path of paths) {
|
|
202497
|
+
console.log(path);
|
|
202497
202498
|
template += await fetch(path).then(res => res.text());
|
|
202498
202499
|
}
|
|
202499
202500
|
|
|
202501
|
+
console.log(template);
|
|
202502
|
+
|
|
202500
202503
|
return await new PromptTemplate({
|
|
202501
202504
|
template,
|
|
202502
202505
|
inputVariables: Object.keys(params),
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202490,9 +202490,12 @@ class IdeUtils
|
|
|
202490
202490
|
let template = "";//await fetch(path).then(res => res.text());
|
|
202491
202491
|
|
|
202492
202492
|
for (let path of paths) {
|
|
202493
|
+
console.log(path);
|
|
202493
202494
|
template += await fetch(path).then(res => res.text());
|
|
202494
202495
|
}
|
|
202495
202496
|
|
|
202497
|
+
console.log(template);
|
|
202498
|
+
|
|
202496
202499
|
return await new PromptTemplate({
|
|
202497
202500
|
template,
|
|
202498
202501
|
inputVariables: Object.keys(params),
|
|
@@ -16,9 +16,12 @@ export class IdeUtils
|
|
|
16
16
|
let template = "";//await fetch(path).then(res => res.text());
|
|
17
17
|
|
|
18
18
|
for (let path of paths) {
|
|
19
|
+
console.log(path);
|
|
19
20
|
template += await fetch(path).then(res => res.text());
|
|
20
21
|
}
|
|
21
22
|
|
|
23
|
+
console.log(template);
|
|
24
|
+
|
|
22
25
|
return await new PromptTemplate({
|
|
23
26
|
template,
|
|
24
27
|
inputVariables: Object.keys(params),
|
package/package.json
CHANGED
|
@@ -16,9 +16,12 @@ export class IdeUtils
|
|
|
16
16
|
let template = "";//await fetch(path).then(res => res.text());
|
|
17
17
|
|
|
18
18
|
for (let path of paths) {
|
|
19
|
+
console.log(path);
|
|
19
20
|
template += await fetch(path).then(res => res.text());
|
|
20
21
|
}
|
|
21
22
|
|
|
23
|
+
console.log(template);
|
|
24
|
+
|
|
22
25
|
return await new PromptTemplate({
|
|
23
26
|
template,
|
|
24
27
|
inputVariables: Object.keys(params),
|