---
changelog:
  category: Release
  version: 1.7.2
date: '2025-07-16T06:37:22Z'
seo:
  description: >-
    AI SDK is a free open-source library for building AI-powered products. You
    can seamlessly integrate it with oRPC without any extra overhead. Stream
    converter…
title: v1.7.2
type: changelog
---
### AI SDK Integration [docs](https://orpc.dinwwwh.com/docs/integrations/ai-sdk)

[AI SDK](https://ai-sdk.dev/) is a free open-source library for building AI-powered products. You can seamlessly integrate it with oRPC without any extra overhead.

```ts
const { messages, sendMessage, status } = useChat({
  transport: {
    async sendMessages(options) {
      return eventIteratorToStream(await client.chat({
        chatId: options.chatId,
        messages: options.messages,
      }, { signal: options.abortSignal }))
    },
  },
})
```

### &nbsp;&nbsp;&nbsp;🚀 Features

- Stream converter utils + AI SDK examples &nbsp;-&nbsp; by @dinwwwh in https://github.com/middleapi/orpc/issues/775 [<samp>(e7882)</samp>](https://github.com/middleapi/orpc/commit/e788265c)
- **server, openapi**: Add filter option to handlers &nbsp;-&nbsp; by @dinwwwh in https://github.com/middleapi/orpc/issues/770 [<samp>(3f73b)</samp>](https://github.com/middleapi/orpc/commit/3f73bd30)
- **zod**: Support zod meta `title`  in generated JSON schema &nbsp;-&nbsp; by @zhelezkov in https://github.com/middleapi/orpc/issues/774 [<samp>(c8607)</samp>](https://github.com/middleapi/orpc/commit/c8607a45)

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/middleapi/orpc/compare/v1.7.1...v1.7.2)
