ai 3.3.44 → 3.4.1
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 +13 -0
- package/package.json +2 -2
- package/react/dist/index.d.mts +1 -1
- package/react/dist/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ai",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.4.1",
|
4
4
|
"description": "AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"sideEffects": false,
|
@@ -66,7 +66,7 @@
|
|
66
66
|
"dependencies": {
|
67
67
|
"@ai-sdk/provider": "0.0.23",
|
68
68
|
"@ai-sdk/provider-utils": "1.0.19",
|
69
|
-
"@ai-sdk/react": "0.0.
|
69
|
+
"@ai-sdk/react": "0.0.60",
|
70
70
|
"@ai-sdk/solid": "0.0.47",
|
71
71
|
"@ai-sdk/svelte": "0.0.49",
|
72
72
|
"@ai-sdk/ui-utils": "0.0.44",
|
package/react/dist/index.d.mts
CHANGED
@@ -5,6 +5,6 @@ export { CreateMessage, Message, UseChatHelpers, UseChatOptions } from '@ai-sdk/
|
|
5
5
|
declare const useChat: typeof useChat$1;
|
6
6
|
declare const useCompletion: typeof useCompletion$1;
|
7
7
|
declare const useAssistant: typeof useAssistant$1;
|
8
|
-
declare const experimental_useObject: <RESULT, INPUT = any>({ api, id, schema, initialValue, fetch, onError, onFinish, }: _ai_sdk_react.Experimental_UseObjectOptions<RESULT>) => _ai_sdk_react.Experimental_UseObjectHelpers<RESULT, INPUT>;
|
8
|
+
declare const experimental_useObject: <RESULT, INPUT = any>({ api, id, schema, initialValue, fetch, onError, onFinish, headers, }: _ai_sdk_react.Experimental_UseObjectOptions<RESULT>) => _ai_sdk_react.Experimental_UseObjectHelpers<RESULT, INPUT>;
|
9
9
|
|
10
10
|
export { experimental_useObject, useAssistant, useChat, useCompletion };
|
package/react/dist/index.d.ts
CHANGED
@@ -5,7 +5,7 @@ export { CreateMessage, Message, UseChatHelpers, UseChatOptions } from '@ai-sdk/
|
|
5
5
|
declare const useChat: typeof useChat$1;
|
6
6
|
declare const useCompletion: typeof useCompletion$1;
|
7
7
|
declare const useAssistant: typeof useAssistant$1;
|
8
|
-
declare const experimental_useObject: <RESULT, INPUT = any>({ api, id, schema, initialValue, fetch, onError, onFinish, }: _ai_sdk_react.Experimental_UseObjectOptions<RESULT>) => _ai_sdk_react.Experimental_UseObjectHelpers<RESULT, INPUT>;
|
8
|
+
declare const experimental_useObject: <RESULT, INPUT = any>({ api, id, schema, initialValue, fetch, onError, onFinish, headers, }: _ai_sdk_react.Experimental_UseObjectOptions<RESULT>) => _ai_sdk_react.Experimental_UseObjectHelpers<RESULT, INPUT>;
|
9
9
|
|
10
10
|
export { experimental_useObject, useAssistant, useChat, useCompletion };
|
11
11
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|