You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/docs/05-ai-sdk-ui/03-chatbot-with-tool-calling.mdx
+25-25
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ The flow is as follows:
29
29
You can return the tool result from the callback.
30
30
1. Client-side tool that require user interactions can be displayed in the UI.
31
31
The tool calls and results are available in the `toolInvocations` property of the last assistant message.
32
-
1. When the user interaction is done, `experimental_addToolResult` can be used to add the tool result to the chat.
32
+
1. When the user interaction is done, `addToolResult` can be used to add the tool result to the chat.
33
33
1. When there are tool calls in the last assistant message and all tool results are available, the client sends the updated messages back to the server.
34
34
This triggers another iteration of this flow.
35
35
@@ -39,9 +39,9 @@ The tool result contains all information about the tool call as well as the resu
39
39
40
40
<Note>
41
41
In order to automatically send another request to the server when all tool
42
-
calls are server-side, you need to set `experimental_maxAutomaticRoundtrips`
43
-
to a value greater than 0 in the `useChat` options. It is disabled by default
44
-
for backward compatibility.
42
+
calls are server-side, you need to set `maxAutomaticRoundtrips` to a value
43
+
greater than 0 in the `useChat` options. It is disabled by default for
44
+
backward compatibility.
45
45
</Note>
46
46
47
47
## Example
@@ -113,9 +113,9 @@ There are three things worth mentioning:
113
113
1. The `toolInvocations` property of the last assistant message contains all tool calls and results.
114
114
The client-side tool `askForConfirmation` is displayed in the UI.
115
115
It asks the user for confirmation and displays the result once the user confirms or denies the execution.
116
-
The result is added to the chat using `experimental_addToolResult`.
116
+
The result is added to the chat using `addToolResult`.
117
117
118
-
1. The `experimental_maxAutomaticRoundtrips` option is set to 5.
118
+
1. The `maxAutomaticRoundtrips` option is set to 5.
119
119
This enables several tool use iterations between the client and the server.
120
120
121
121
```tsx filename='app/page.tsx'
@@ -125,23 +125,23 @@ import { ToolInvocation } from 'ai';
125
125
import { Message, useChat } from'ai/react';
126
126
127
127
exportdefaultfunction Chat() {
128
-
const {
129
-
messages,
130
-
input,
131
-
handleInputChange,
132
-
handleSubmit,
133
-
experimental_addToolResult,
134
-
} =useChat({
135
-
experimental_maxAutomaticRoundtrips: 5,
136
-
137
-
// run client-side tools that are automatically executed:
Copy file name to clipboardexpand all lines: content/docs/07-reference/ai-sdk-ui/01-use-chat.mdx
+2-2
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ Allows you to easily create a conversational user interface for your chatbot app
105
105
"An optional boolean that determines whether to send extra fields you've added to `messages`. Defaults to `false` and only the `content` and `role` fields will be sent to the API endpoint.",
106
106
},
107
107
{
108
-
name: 'experimental_maxAutomaticRoundtrips',
108
+
name: 'maxAutomaticRoundtrips',
109
109
type: 'number',
110
110
description:
111
111
'React only. Maximal number of automatic roundtrips for tool calls. An automatic tool call roundtrip is a call to the server with the tool call results when all tool calls in the last assistant message have results. A maximum number is required to prevent infinite loops in the case of misconfigured tools. By default, it is set to 0, which will disable the feature.',
@@ -184,7 +184,7 @@ Allows you to easily create a conversational user interface for your chatbot app
184
184
description: 'Data returned from experimental_StreamData',
'React only. Function to add a tool result to the chat. This will update the chat messages with the tool result and call the API route if all tool results for the last message are available.',
0 commit comments