Skip to content

Commit c185625

Browse files
authored
bug fix and cleanup for 0.2.16 (microsoft#1827)
1 parent e5c6ad7 commit c185625

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/openai.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- "notebook/agentchat_groupchat_finite_state_machine.ipynb"
1515
- ".github/workflows/openai.yml"
1616
permissions: {}
17-
# actions: read
17+
# actions: read
1818
# checks: read
1919
# contents: read
2020
# deployments: read

autogen/agentchat/groupchat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ async def a_run_chat(
626626
# Broadcast the intro
627627
intro = groupchat.introductions_msg()
628628
for agent in groupchat.agents:
629-
self.a_send(intro, agent, request_reply=False, silent=True)
629+
await self.a_send(intro, agent, request_reply=False, silent=True)
630630
# NOTE: We do not also append to groupchat.messages,
631631
# since groupchat handles its own introductions
632632

autogen/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.15"
1+
__version__ = "0.2.16"

setup.py

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@
5555
"graph": ["networkx", "matplotlib"],
5656
"websurfer": ["beautifulsoup4", "markdownify", "pdfminer.six", "pathvalidate"],
5757
"redis": ["redis"],
58-
# Dependencies for EmbeddedIPythonExecutor, to be removed once upstream bug fixed
59-
# jupyter-client
60-
# https://github.com/jupyter-server/kernel_gateway/issues/398
6158
"jupyter-executor": [
6259
"jupyter-kernel-gateway",
6360
"websocket-client",

0 commit comments

Comments
 (0)