Skip to content

Commit 7a21cab

Browse files
committed
fix
1 parent 1780d87 commit 7a21cab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/content/changelog/agents/2025-03-18-npm-i-agents.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ The [`agents-starter`](https://github.com/cloudflare/agents-starter) project —
9393
- TODO
9494
- Upgraded to use the latest [wrangler v4](/changelog/2025-03-13-wrangler-v4/) release.
9595
- [Workers AI](/workers-ai/) is now the default AI provider in the [`agents-starter`](https://github.com/cloudflare/agents-starter) project: this uses the new [structured outputs](/changelog/2025-02-25-json-mode/) (or "JSON mode") support now in Workers AI and the [`workers-ai-provider`](https://sdk.vercel.ai/providers/community-providers/cloudflare-workers-ai#generateobject).
96+
- Changed the internal `zod` schema to be compatible with the limitations of Google's Gemini models, allowing you to use Gemini models with the starter.
9697

9798
If you're new to Agents, you can install and run the `agents-starter` project in two commands:
9899

src/content/docs/agents/api-reference/agents-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ function TaskManager() {
782782
}
783783

784784
return (
785-
<div>
785+
<>
786786
<h1>Task Manager</h1>
787787
<form onSubmit={addTask}>
788788
<input
@@ -797,7 +797,7 @@ function TaskManager() {
797797
<li key={task.id}>{task.text}</li>
798798
))}
799799
</ul>
800-
</div>
800+
</>
801801
);
802802
}
803803

0 commit comments

Comments
 (0)