Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion .changeset/afraid-moles-cross.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
'ai': major
---

chore(@ai-sdk/rsc): extract to separate package
### The `ai/rsc` package has been moved separately to `@ai-sdk/rsc`.


Before:

```ts
import { createStreamableValue } from 'ai/rsc';

const stream = createStreamableValue('');
```

After:

```bash
npm install @ai-sdk/rsc
```

```ts
import { createStreamableValue } from '@ai-sdk/rsc';

const stream = createStreamableValue('');
```

Commit: https://github.com/vercel/ai/pull/5542