ai 4.1.54 → 4.1.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai",
3
- "version": "4.1.54",
3
+ "version": "4.1.55",
4
4
  "description": "AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
@@ -41,10 +41,11 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@ai-sdk/provider": "1.0.10",
44
- "@ai-sdk/provider-utils": "2.1.11",
45
- "@ai-sdk/react": "1.1.21",
46
- "@ai-sdk/ui-utils": "1.1.17",
44
+ "@ai-sdk/provider-utils": "2.1.12",
45
+ "@ai-sdk/react": "1.1.22",
46
+ "@ai-sdk/ui-utils": "1.1.18",
47
47
  "@opentelemetry/api": "1.9.0",
48
+ "eventsource-parser": "^3.0.0",
48
49
  "jsondiffpatch": "0.6.0"
49
50
  },
50
51
  "devDependencies": {
@@ -701,6 +701,7 @@ function prepareCallSettings({
701
701
  }
702
702
  return {
703
703
  maxTokens,
704
+ // TODO v5 remove default 0 for temperature
704
705
  temperature: temperature != null ? temperature : 0,
705
706
  topP,
706
707
  topK,