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
Question: Reusing AzureAssistantAgent in AgentGroupChat
I have the following setup:
An API that accepts user input
It uses AgentGroupChat to orchestrate several AzureAssistantAgent instances
Currently, I'm creating a new instance of AgentGroupChat on each request
I attempt to reuse the AzureAssistantAgent instances by calling AzureAssistantAgent.retrieve with an agent_id (the agents are initially created on the first request)
Issue:
When I try to retrieve an existing agent by agent_id, I receive the error message: "No assistant found with id ..."
Questions:
Is this error expected or by design?
What is the correct approach for managing state and concurrency (multithreading) in AgentGroupChat when working with AzureAssistantAgent instances?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Question: Reusing
AzureAssistantAgent
inAgentGroupChat
I have the following setup:
AgentGroupChat
to orchestrate severalAzureAssistantAgent
instancesAgentGroupChat
on each requestAzureAssistantAgent
instances by callingAzureAssistantAgent.retrieve
with anagent_id
(the agents are initially created on the first request)Issue:
When I try to retrieve an existing agent by
agent_id
, I receive the error message: "No assistant found with id ..."Questions:
AgentGroupChat
when working withAzureAssistantAgent
instances?Beta Was this translation helpful? Give feedback.
All reactions