Skip to content

Commit e656d8d

Browse files
committed
agents v0.1.0 shipped
1 parent f0b2b80 commit e656d8d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"tail": "wrangler tail"
1616
},
1717
"dependencies": {
18-
"@ai-sdk/openai": "^2.0.24",
19-
"@ai-sdk/react": "^2.0.34",
18+
"@ai-sdk/openai": "^2.0.28",
19+
"@ai-sdk/react": "^2.0.39",
2020
"@ai-sdk/ui-utils": "^1.2.11",
21-
"@openai/agents": "^0.1.0",
22-
"@openai/agents-core": "^0.1.0",
21+
"@openai/agents": "^0.1.1",
22+
"@openai/agents-core": "^0.1.1",
2323
"@std/front-matter": "jsr:^1.0.9",
2424
"agents": "^0.1.0",
25-
"ai": "^5.0.34",
25+
"ai": "^5.0.39",
2626
"lodash": "^4.17.21",
2727
"markdown-it": "^14.1.0",
2828
"markdown-it-replace-link": "^1.2.2",
@@ -34,8 +34,8 @@
3434
"zod": "^3.25.76"
3535
},
3636
"devDependencies": {
37-
"@cloudflare/vite-plugin": "^1.12.3",
38-
"@cloudflare/workers-types": "^4.20250906.0",
37+
"@cloudflare/vite-plugin": "^1.12.4",
38+
"@cloudflare/workers-types": "^4.20250910.0",
3939
"@tailwindcss/typography": "^0.5.16",
4040
"@tailwindcss/vite": "^4.1.13",
4141
"@types/lodash": "^4.17.20",
@@ -49,9 +49,9 @@
4949
"mime-types": "^3.0.1",
5050
"tailwindcss": "^4.1.13",
5151
"typescript": "^5.9.2",
52-
"vite": "^7.1.4",
52+
"vite": "^7.1.5",
5353
"vitest": "^3.2.4",
54-
"wrangler": "^4.34.0"
54+
"wrangler": "^4.35.0"
5555
},
5656
"pnpm": {
5757
"peerDependencyRules": {

src/app/chat-agent-agent/ChatAgentAgentClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function ChatAgentAgentClient() {
1919

2020
return (
2121
<>
22-
<div className="text-gray-500">Status: {status}</div>
22+
<div className="text-gray-500 px-2">Status: {status}</div>
2323
{ error && <div className="text-red-500 text-sm border border-red-500 rounded-md p-2 my-4">Error: {error.message}</div> }
2424
<MessageListUI messages={messages} />
2525
<MessageInput

src/app/chat-rsc/ChatRSC.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Connect } from './Connect'
66

77
export async function ChatRSC() {
88
return (
9-
<ChatLayout title="RedwoodSDK RSC Chat">
9+
<ChatLayout title="RedwoodSDK realtime RSC Chat">
1010
<Connect />
1111
<MessageList messages={await getMessages()} />
1212
<MessageInput newMessage={newMessage} onClear={clearMessages} />

0 commit comments

Comments
 (0)