diff --git a/README.md b/README.md index 238f0816415..63372b0df50 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,8 @@ notifications, and more. - [`@liveblocks/node`](https://liveblocks.io/docs/api-reference/liveblocks-node) - [`@liveblocks/emails`](https://liveblocks.io/docs/api-reference/liveblocks-emails) - [`@liveblocks/emails`](https://liveblocks.io/docs/api-reference/liveblocks-emails) +- [`@liveblocks/chat-sdk-adapter`](https://liveblocks.io/docs/api-reference/liveblocks-chat-sdk-adapter) +- [Python SDK](https://liveblocks.io/docs/api-reference/liveblocks-python) - [`REST API`](https://liveblocks.io/docs/api-reference/rest-api-endpoints) ## Developers diff --git a/examples/nextjs-chat-sdk-ai-bot/package.json b/examples/nextjs-chat-sdk-ai-bot/package.json index 389f616eb34..e90c2e44c14 100644 --- a/examples/nextjs-chat-sdk-ai-bot/package.json +++ b/examples/nextjs-chat-sdk-ai-bot/package.json @@ -9,19 +9,20 @@ "start": "next start" }, "dependencies": { + "@ai-sdk/anthropic": "^3.0.64", "@chat-adapter/state-memory": "^4.23.0", "@liveblocks/chat-sdk-adapter": "^3.15.5", "@liveblocks/client": "^3.15.5", "@liveblocks/node": "^3.15.5", "@liveblocks/react": "^3.15.5", "@liveblocks/react-ui": "^3.15.5", - "@ai-sdk/anthropic": "^3.0.64", "ai": "^6.0.140", - "zod": "^4.3.6", "chat": "^4.22.0", "next": "16.2.1", "react": "19.2.4", - "react-dom": "19.2.4" + "react-dom": "19.2.4", + "react-error-boundary": "^6.1.1", + "zod": "^4.3.6" }, "devDependencies": { "@tailwindcss/postcss": "^4", diff --git a/examples/nextjs-chat-sdk-bot/package.json b/examples/nextjs-chat-sdk-bot/package.json index ea57cb201a6..40d375742ff 100644 --- a/examples/nextjs-chat-sdk-bot/package.json +++ b/examples/nextjs-chat-sdk-bot/package.json @@ -18,7 +18,8 @@ "chat": "^4.22.0", "next": "16.2.1", "react": "19.2.4", - "react-dom": "19.2.4" + "react-dom": "19.2.4", + "react-error-boundary": "^6.1.1" }, "devDependencies": { "@tailwindcss/postcss": "^4",