ai 5.0.0-canary.21 → 5.0.0-canary.22

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,14 @@
1
1
  # ai
2
2
 
3
+ ## 5.0.0-canary.22
4
+
5
+ ### Major Changes
6
+
7
+ - e7dc6c7: chore (ai): remove onResponse callback
8
+ - a34eb39: chore (ai): remove `data` and `allowEmptySubmit` from `ChatRequestOptions`
9
+ - b33ed7a: chore (ai): rename DataStream* to UIMessage*
10
+ - 765f1cd: chore (ai): remove deprecated useChat isLoading helper
11
+
3
12
  ## 5.0.0-canary.21
4
13
 
5
14
  ### 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