@aliou/pi-synthetic 0.17.1 → 0.17.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ![banner](https://assets.aliou.me/pi-extensions/banners/pi-synthetic.png)
1
+ ![banner](https://assets.aliou.me/github/aliou/pi-synthetic/banner.png)
2
2
 
3
3
  # Pi Synthetic Extension
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aliou/pi-synthetic",
3
- "version": "0.17.1",
3
+ "version": "0.17.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -22,7 +22,7 @@
22
22
  "./src/extensions/quota-warnings/index.ts",
23
23
  "./src/extensions/usage-status/index.ts"
24
24
  ],
25
- "video": "https://assets.aliou.me/pi-extensions/demos/pi-synthetic.mp4"
25
+ "video": "https://assets.aliou.me/github/aliou/pi-synthetic/demo.mp4"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
@@ -15,6 +15,8 @@
15
15
  * 1. "Error from inference backend: 400 The input (N tokens) is longer
16
16
  * than the model's context length (M tokens)."
17
17
  * 2. "Context limit exceeded"
18
+ * 3. "Error from inference backend: 400 status code (no body)"
19
+ * — some backends return a bare 400 when the context is too long.
18
20
  */
19
21
  export const SYNTHETIC_OVERFLOW_PATTERN =
20
- /input \(\d+ tokens\) is longer than the model's context length|Context limit exceeded/i;
22
+ /input \(\d+ tokens\) is longer than the model's context length|Context limit exceeded|400 status code \(no body\)/i;
@@ -160,7 +160,7 @@ export const SYNTHETIC_MODELS: SyntheticModelConfig[] = [
160
160
  id: "hf:Qwen/Qwen3-Coder-480B-A35B-Instruct",
161
161
  name: "Qwen/Qwen3-Coder-480B-A35B-Instruct",
162
162
  provider: "together",
163
- reasoning: true,
163
+ reasoning: false,
164
164
  input: ["text"],
165
165
  cost: {
166
166
  input: 2,