smoltalk 0.0.39 → 0.0.40

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.
@@ -26,10 +26,8 @@ export class FallbackStrategy extends BaseStrategy {
26
26
  continue;
27
27
  }
28
28
  }
29
- else {
30
- if (this.config.fallbackOn.includes("error")) {
31
- continue;
32
- }
29
+ if (this.config.fallbackOn.includes("error")) {
30
+ continue;
33
31
  }
34
32
  throw error;
35
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smoltalk",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "A common interface for LLM APIs",
5
5
  "homepage": "https://github.com/egonSchiele/smoltalk",
6
6
  "scripts": {