Loading video...

Video Failed to Load

Go Home

"Vercel AI SDK - how do I get ai to interpret the tools response?" 👇

18,731 views • 1 year ago •via X (Twitter)

7 Comments

Kevin Wolf's profile picture
Kevin Wolf1 year ago

I usually just set up maxSteps to be infinity. Is it a bad practice?

Alex Sidorenko's profile picture
Alex Sidorenko1 year ago

Could lead to infinite loops according to the docs.

NICE's profile picture
NICE1 year ago

Stay competitive by balancing cutting-edge AI with automation tools. Forrester shows how.

Eka Prasetia 🤵's profile picture
Eka Prasetia 🤵1 year ago

So, does it mean maxStep is required for Tool Calling?

Alex Sidorenko's profile picture
Alex Sidorenko1 year ago

Nope. If you just need the tool's call result (e.g., displaying the weather widget with data from the weather API), you can directly access it from message.toolInvocations (no need for maxSteps) It's when you need to feed the result of the tool invocation back to LLM for it to interpret and respond that's when you need maxStep

Tomas Jansson's profile picture
Tomas Jansson1 year ago

Why does it not work without maxSteps?

Alex Sidorenko's profile picture
Alex Sidorenko1 year ago

It does work, the tool gets called, and you have access to its result in your UI. But if you want to feed the tool's invocation result back to llm to get natural language response, you need more steps

Related Videos