bug fix and cleanup for 0.2.16 (#1827)

This commit is contained in:
Chi Wang 2024-02-29 20:31:49 -08:00 committed by GitHub
parent 2b8b55b30e
commit 0a49f2a256
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 6 deletions

View File

@ -14,7 +14,7 @@ on:
- "notebook/agentchat_groupchat_finite_state_machine.ipynb" - "notebook/agentchat_groupchat_finite_state_machine.ipynb"
- ".github/workflows/openai.yml" - ".github/workflows/openai.yml"
permissions: {} permissions: {}
# actions: read # actions: read
# checks: read # checks: read
# contents: read # contents: read
# deployments: read # deployments: read

View File

@ -626,7 +626,7 @@ class GroupChatManager(ConversableAgent):
# Broadcast the intro # Broadcast the intro
intro = groupchat.introductions_msg() intro = groupchat.introductions_msg()
for agent in groupchat.agents: 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, # NOTE: We do not also append to groupchat.messages,
# since groupchat handles its own introductions # since groupchat handles its own introductions

View File

@ -1 +1 @@
__version__ = "0.2.15" __version__ = "0.2.16"

View File

@ -55,9 +55,6 @@ setuptools.setup(
"graph": ["networkx", "matplotlib"], "graph": ["networkx", "matplotlib"],
"websurfer": ["beautifulsoup4", "markdownify", "pdfminer.six", "pathvalidate"], "websurfer": ["beautifulsoup4", "markdownify", "pdfminer.six", "pathvalidate"],
"redis": ["redis"], "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-executor": [
"jupyter-kernel-gateway", "jupyter-kernel-gateway",
"websocket-client", "websocket-client",