mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-11 15:24:16 +00:00
bug fix and cleanup for 0.2.16 (#1827)
This commit is contained in:
parent
2b8b55b30e
commit
0a49f2a256
2
.github/workflows/openai.yml
vendored
2
.github/workflows/openai.yml
vendored
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
__version__ = "0.2.15"
|
__version__ = "0.2.16"
|
||||||
|
|||||||
3
setup.py
3
setup.py
@ -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",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user