From 08a7578de8f9eebced4411279a2edf2bf07cbc82 Mon Sep 17 00:00:00 2001 From: HRUSHIKESH DOKALA <96101829+Hk669@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:47:19 +0530 Subject: [PATCH] type fix for ChatResult (#2973) --- 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 94e8e3416..97411e9fc 100644 --- a/autogen/agentchat/chat.py +++ b/autogen/agentchat/chat.py @@ -21,7 +21,7 @@ class ChatResult: chat_id: int = None """chat id""" - chat_history: List[Dict[str, any]] = None + chat_history: List[Dict[str, Any]] = None """The chat history.""" summary: str = None """A summary obtained from the chat."""