From 9ae7fa6930ef56ec5047787a3ae38adecf6b14c0 Mon Sep 17 00:00:00 2001 From: gagb Date: Wed, 11 Dec 2024 00:15:49 -0800 Subject: [PATCH] Clarify BaseChatAgent description in __init__.py --- .../autogen-agentchat/src/autogen_agentchat/agents/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packages/autogen-agentchat/src/autogen_agentchat/agents/__init__.py b/python/packages/autogen-agentchat/src/autogen_agentchat/agents/__init__.py index f8eb797a6f2d..855e66ae866f 100644 --- a/python/packages/autogen-agentchat/src/autogen_agentchat/agents/__init__.py +++ b/python/packages/autogen-agentchat/src/autogen_agentchat/agents/__init__.py @@ -1,6 +1,6 @@ """ This module initializes various pre-defined agents provided by the package. -The BaseChatAgent class is the base class for all agents, and the other agents. +BaseChatAgent is the base class for all agents in AgentChat. """ from ._assistant_agent import AssistantAgent, Handoff # type: ignore