[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live)

[AI SDK](/c/ai-sdk/62)

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

51 views · 2 likes · 3 posts


Bohdan Petryshyn (@bypetryshyn-9818) · 2025-10-09

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


Nico Albanese (@nicoalbanese) · 2025-10-09 · ♥ 1

Hey! You could build something like this with the [generateObject function](https://ai-sdk.dev/docs/reference/ai-sdk-core/generate-object)! 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.


Bohdan Petryshyn (@bypetryshyn-9818) · 2025-10-09 · ♥ 1

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