Skip to content

Commit

Permalink
bug fix and cleanup for 0.2.16 (#1827)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonichi authored Mar 1, 2024
1 parent 2b8b55b commit 0a49f2a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- "notebook/agentchat_groupchat_finite_state_machine.ipynb"
- ".github/workflows/openai.yml"
permissions: {}
# actions: read
# actions: read
# checks: read
# contents: read
# deployments: read
Expand Down
2 changes: 1 addition & 1 deletion autogen/agentchat/groupchat.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ async def a_run_chat(
# Broadcast the intro
intro = groupchat.introductions_msg()
for agent in groupchat.agents:
self.a_send(intro, agent, request_reply=False, silent=True)
await self.a_send(intro, agent, request_reply=False, silent=True)
# NOTE: We do not also append to groupchat.messages,
# since groupchat handles its own introductions

Expand Down
2 changes: 1 addition & 1 deletion autogen/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.15"
__version__ = "0.2.16"
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@
"graph": ["networkx", "matplotlib"],
"websurfer": ["beautifulsoup4", "markdownify", "pdfminer.six", "pathvalidate"],
"redis": ["redis"],
# Dependencies for EmbeddedIPythonExecutor, to be removed once upstream bug fixed
# jupyter-client
# https://github.com/jupyter-server/kernel_gateway/issues/398
"jupyter-executor": [
"jupyter-kernel-gateway",
"websocket-client",
Expand Down

0 comments on commit 0a49f2a

Please sign in to comment.