only_ever_generator 0.4.1 → 0.4.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.
@@ -60,10 +60,10 @@ class OnlyEverGenerator {
60
60
  this.cardgenResponse = yield this.generateCard(this.promptForCardGen, JSON.stringify(this.typologyResponse), false);
61
61
  responseToReturn.push(this.cardgenResponse);
62
62
  /// check if gap fill is required ie coverage determination
63
- if (this.cardgenResponse.status_code == 200) {
64
- this.gapFillResponse = yield this._generationForGapFill(this.typologyResponse, this.cardgenResponse);
65
- responseToReturn.push(this.gapFillResponse);
66
- }
63
+ // if(this.cardgenResponse.status_code == 200) {
64
+ // this.gapFillResponse = await this._generationForGapFill(this.typologyResponse, this.cardgenResponse);
65
+ // responseToReturn.push(this.gapFillResponse);
66
+ // }
67
67
  }
68
68
  }
69
69
  return responseToReturn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "only_ever_generator",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "start": "npm run build && nodemon dist/index.js",
@@ -78,10 +78,10 @@ export class OnlyEverGenerator {
78
78
  responseToReturn.push(this.cardgenResponse);
79
79
 
80
80
  /// check if gap fill is required ie coverage determination
81
- if(this.cardgenResponse.status_code == 200) {
82
- this.gapFillResponse = await this._generationForGapFill(this.typologyResponse, this.cardgenResponse);
83
- responseToReturn.push(this.gapFillResponse);
84
- }
81
+ // if(this.cardgenResponse.status_code == 200) {
82
+ // this.gapFillResponse = await this._generationForGapFill(this.typologyResponse, this.cardgenResponse);
83
+ // responseToReturn.push(this.gapFillResponse);
84
+ // }
85
85
 
86
86
  }
87
87
  }