Ravi Kumar
Ravi Kumar
Hi @ayepRahman , you can use "sendMessage" function present on assistantresponsecallback to save the current response to your external database https://sdk.vercel.ai/docs/api-reference/providers/assistant-response#process-assistantresponsecallback  as of now, the documentation on "sendMessage" is...
opps my bad, sendMessage is something else. you can use finalMessages() method returned from stream to get the response result.  ```ts runStream.finalMessages().then((finalMessages) => { console.log("finalMessages", finalMessages); }); ``` hope...
Hi @fabian-hiller, i checked the changes in the PR that you mentioned, but i couldn't find the solution i was looking for. can you help me out if i am...
@fabian-hiller , thanks it worked.