@ai-sdk/openai-compatible 0.2.7 → 0.2.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @ai-sdk/openai-compatible
2
2
 
3
+ ## 0.2.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 1bbc698: chore(openai-compatible): deprecate simulateStreaming
8
+
9
+ ## 0.2.8
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [013faa8]
14
+ - @ai-sdk/provider@1.1.2
15
+ - @ai-sdk/provider-utils@2.2.6
16
+
3
17
  ## 0.2.7
4
18
 
5
19
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -14,6 +14,7 @@ interface OpenAICompatibleChatSettings {
14
14
  Enable this if the model that you are using does not support streaming.
15
15
 
16
16
  Defaults to `false`.
17
+ @deprecated Use `simulateStreamingMiddleware` instead.
17
18
  */
18
19
  simulateStreaming?: boolean;
19
20
  }
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ interface OpenAICompatibleChatSettings {
14
14
  Enable this if the model that you are using does not support streaming.
15
15
 
16
16
  Defaults to `false`.
17
+ @deprecated Use `simulateStreamingMiddleware` instead.
17
18
  */
18
19
  simulateStreaming?: boolean;
19
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/openai-compatible",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -26,8 +26,8 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "@ai-sdk/provider": "1.1.1",
30
- "@ai-sdk/provider-utils": "2.2.5"
29
+ "@ai-sdk/provider": "1.1.2",
30
+ "@ai-sdk/provider-utils": "2.2.6"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "20.17.24",