You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose problem 1 is fixed. In line 283, the ActionOutputs also runs in the same issue where the action output of the first action call is overriden by the second.
Possible Solutions
Update the key of ActionOutputs to be unique.
Set the value of ActionOutputs to be an array of strings.
The text was updated successfully, but these errors were encountered:
This has been fixed in JS/PY when implementing tools support in the ActionPlanner
corinagum
added
dotnet
Change/fix applies to dotnet. If all three, use the 'JS & dotnet & Python' label
bug
Something isn't working
labels
Aug 20, 2024
teams-ai/dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Planners/AssistantsPlanner.cs
Lines 212 to 222 in 5fda47e
Problem 1
toolMap
key takes the function name, which means if two separate tool calls invoke the same function, one of them would be overriden.Solution
teams-ai/dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/AI.cs
Lines 267 to 285 in 5fda47e
Problem 2
ActionOutputs
also runs in the same issue where the action output of the first action call is overriden by the second.Possible Solutions
ActionOutputs
to be unique.ActionOutputs
to be an array of strings.The text was updated successfully, but these errors were encountered: