Reputation: 23
I’ve built a chatbot using Azure OpenAI with GPT-4o. The chatbot is deployed as a Teams application and works as expected. However, I want to enable streaming messages, but it’s not working as intended.
I followed the instructions provided by microsoft and updated the app.ts file accordingly. However, I’m encountering the following error:
Has anyone faced a similar issue or have suggestions on how to resolve this?
Upvotes: 0
Views: 104
Reputation: 1
Streaming response feature is not supported in old version (<1.4.0) of @microsoft/teams-ai
SDK.1 Please try to upgrade the package.
@ABM Could you please check and share the version of @microsoft/teams-ai in file package.json of your project. I've noticed that you were using Teams Toolkit to debug. The version of the teams-ai package might to be re-installed with the version claimed in package.json, although you updated your package.
1As noted by mike.slomczynski in a comment.
Upvotes: 0