Looking for a tool to analyze user conversations with my AI agent

Is there a tool that would extract insights like feature requests, user preferences, churn signals, etc. from conversations users have with my AI SDK-based AI agent?

At the very least, I’m looking for something that could identify feature requests so I know that “fetching data from a URL is a missing feature that was requested X times”.

Thanks

Hey! You could build something like this with the generateObject function! Pass in a system prompt describing the task and then a zod schema, and keep iterating until it consistently returns exactly what you’re looking for.

Yeah, that’s probably what I’m going to do, just thought there might be an existing solution for it. Thanks!