ai 5.0.0-canary.21 → 5.0.0-canary.23

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,25 @@
1
1
  # ai
2
2
 
3
+ ## 5.0.0-canary.23
4
+
5
+ ### Major Changes
6
+
7
+ - 40acf9b: feat (ui): introduce ChatStore and ChatTransport
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [40acf9b]
12
+ - @ai-sdk/provider-utils@3.0.0-canary.18
13
+
14
+ ## 5.0.0-canary.22
15
+
16
+ ### Major Changes
17
+
18
+ - e7dc6c7: chore (ai): remove onResponse callback
19
+ - a34eb39: chore (ai): remove `data` and `allowEmptySubmit` from `ChatRequestOptions`
20
+ - b33ed7a: chore (ai): rename DataStream* to UIMessage*
21
+ - 765f1cd: chore (ai): remove deprecated useChat isLoading helper
22
+
3
23
  ## 5.0.0-canary.21
4
24
 
5
25
  ### Major Changes
package/README.md CHANGED
@@ -106,7 +106,7 @@ export async function POST(req: Request) {
106
106
  messages,
107
107
  });
108
108
 
109
- return result.toDataStreamResponse();
109
+ return result.toUIMessageStreamResponse();
110
110
  }
111
111
  ```
112
112