jspv
jspv
@microsoft-github-policy-service agree From: microsoft-github-policy-service[bot] ***@***.***> Date: Sunday, December 1, 2024 at 9:45 AM To: microsoft/autogen ***@***.***> Cc: jspv ***@***.***>, Mention ***@***.***> Subject: Re: [microsoft/autogen] DRAFT for Feedback - Support for...
> @jspv thanks for the PR! We have an issue to track streaming output from agents: #3862 and #3983. The general idea is to stream partial messages through the async...
Thinking more on this. An advantage of the callback model vs. async iterator is that it works perfectly when invoking group chats, E.g. `RoundRobinGroupChat` and `await self.agent_team.run(task=message)`. This way the...
> @jspv Agent output should go via the runtime (message publishing). The reason this is important is so that cross process communication works as expected. The callback approach will only...
Just tested, worked very well. Agree, a toggle would be helpful. Will close this PR. Thanks!
Still very much a problem with 1.6.5 importing from OneNote
Hi, is this still being worked on? Getting killed by rate limits today and was hoping someone was working on a handler.
Hi, @husseinmozannar, I'm trying to understand the full intent with this change as all tools results are now returned in TextMessage (vs. only in ToolCallResultMessage) which makes it difficult to...
Thanks, I understand the intent, the challenge for me is that *both* tool call results and normal responses are now returned as :class:~autogen_agentchat.messages.TextMessage with no differentiating characteristics, making it difficult...
@husseinmozannar, I'm think I'm finding more side effects of this change. Using a simple RoundRobin with two agents: - writer, writes papers and has access to a web search tool...