Replies: 3 comments 2 replies
-
@crickman, can you take a look, please? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @vslepakov - By AzureAssistantAgent, are you refering to the Azure AI Agent SDK (https://learn.microsoft.com/azure/ai-services/agents/quickstart) or just the Azure usage of the Open AI Assistant API ( Also, are you using .NET or Python? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Ok, thank you for the clarification.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey folks!
I have a few questions about how
AgentGroupChat
operates:Assistant Thread Management
How does
AgentGroupChat
handle threads inAzureAssistantAgent
? I see there's a way to retrieve an existingAzureAssistantAgent
and add it to anAgentGroupChat
, but what's the best way to rehydrate a specific thread? Is it more appropriate to use a single instance ofAzureAssistantAgent
per user?Conversation History
How does
AgentGroupChat
keep track of conversation history? If I add an existingAzureAssistantAgent
to the chat, does it pull in the history for a particular thread automatically? Is there a way to manually provide conversation history for aChatCompletionAgent
?Instance Management
In a real-world application, should
AgentGroupChat
be a singleton? Or is it best to create a newAgentGroupChat
for each API request, managing assistant thread clean up separately in that case?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions