From 5d11d1bebb6c5c6440fccc5de1ae92ed5c8a1111 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 22 May 2026 18:09:23 +0000 Subject: [PATCH] docs: fix typo in custom agents docs (#7689) --- .../src/user-guide/agentchat-user-guide/custom-agents.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/docs/src/user-guide/agentchat-user-guide/custom-agents.ipynb b/python/docs/src/user-guide/agentchat-user-guide/custom-agents.ipynb index b24b49e76cd2..229d9f0b2b5e 100644 --- a/python/docs/src/user-guide/agentchat-user-guide/custom-agents.ipynb +++ b/python/docs/src/user-guide/agentchat-user-guide/custom-agents.ipynb @@ -16,7 +16,7 @@ "- {py:meth}`~autogen_agentchat.agents.BaseChatAgent.on_reset`: The abstract method that resets the agent to its initial state. This method is called when the agent is asked to reset itself.\n", "- {py:attr}`~autogen_agentchat.agents.BaseChatAgent.produced_message_types`: The list of possible {py:class}`~autogen_agentchat.messages.BaseChatMessage` message types the agent can produce in its response.\n", "\n", - "Optionally, you can implement the the {py:meth}`~autogen_agentchat.agents.BaseChatAgent.on_messages_stream` method to stream messages as they are generated by the agent.\n", + "Optionally, you can implement the {py:meth}`~autogen_agentchat.agents.BaseChatAgent.on_messages_stream` method to stream messages as they are generated by the agent.\n", "This method is called by {py:meth}`~autogen_agentchat.agents.BaseChatAgent.run_stream` to stream messages.\n", "If this method is not implemented, the agent\n", "uses the default implementation of {py:meth}`~autogen_agentchat.agents.BaseChatAgent.on_messages_stream`\n",