From 1bd2124ba400dd337b3e87741d72e857c5bb2e23 Mon Sep 17 00:00:00 2001 From: Tristan Jin <52938917+tjin88@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:16:42 -0400 Subject: [PATCH] Resolve arguments formatting (#3194) Fixed formatting for "clear_history" Co-authored-by: Chi Wang --- autogen/agentchat/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen/agentchat/chat.py b/autogen/agentchat/chat.py index c88f13f6c..d07b4d15c 100644 --- a/autogen/agentchat/chat.py +++ b/autogen/agentchat/chat.py @@ -162,7 +162,7 @@ def initiate_chats(chat_queue: List[Dict[str, Any]]) -> List[ChatResult]: For example: - `"sender"` - the sender agent. - `"recipient"` - the recipient agent. - - `"clear_history" (bool) - whether to clear the chat history with the agent. + - `"clear_history"` (bool) - whether to clear the chat history with the agent. Default is True. - `"silent"` (bool or None) - (Experimental) whether to print the messages in this conversation. Default is False.