only_ever_generator 0.6.2 → 0.6.3
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/bootstrap/app.js +1 -1
- package/package.json +1 -1
- package/src/bootstrap/app.ts +1 -0
package/dist/bootstrap/app.js
CHANGED
|
@@ -95,7 +95,7 @@ class OnlyEverGenerator {
|
|
|
95
95
|
this.typologyResponse.concepts = gapFill.remainingConcepts;
|
|
96
96
|
response = yield this.generateCard(this.promptForCardGen +
|
|
97
97
|
"Generate cards only suitable for the given remaining concepts and facts" +
|
|
98
|
-
JSON.stringify(gapFill), "", true);
|
|
98
|
+
JSON.stringify(gapFill), "", true, 1);
|
|
99
99
|
}
|
|
100
100
|
return response;
|
|
101
101
|
});
|
package/package.json
CHANGED