Skip to content

Commit 9b76731

Browse files
Hyperlint Automation Fix
1 parent 9359724 commit 9b76731

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/agents/api-reference/using-ai-models.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Importantly, Agents can call AI models on their own — autonomously — and can
3232

3333
Modern [reasoning models](https://platform.openai.com/docs/guides/reasoning) or "thinking" model can take some time to both generate a response _and_ stream the response back to the client.
3434

35-
Instead of buffering the entire response, or risking the client disconecting, you can stream the response back to the client by using the [WebSocket API](/agents/api-reference/websockets/).
35+
Instead of buffering the entire response, or risking the client disconnecting, you can stream the response back to the client by using the [WebSocket API](/agents/api-reference/websockets/).
3636

3737
<TypeScriptExample filename="src/index.ts">
3838

@@ -121,7 +121,7 @@ export class MyAgent extends Agent<Env> {
121121

122122
</TypeScriptExample>
123123

124-
Your wrangler configuration will need an `ai` binding added:
124+
Your Wrangler configuration will need an `ai` binding added:
125125

126126
<WranglerConfig>
127127

@@ -174,7 +174,7 @@ export class MyAgent extends Agent<Env> {
174174

175175
</TypeScriptExample>
176176

177-
Your wrangler configuration will need an `ai` binding added. This is shared across both Workers AI and AI Gateway.
177+
Your Wrangler configuration will need an `ai` binding added. This is shared across both Workers AI and AI Gateway.
178178
<WranglerConfig>
179179

180180
```toml

0 commit comments

Comments
 (0)