From bd3b97a71fbb9fc4b951b4ecbe765b780e5c2604 Mon Sep 17 00:00:00 2001 From: Ethan Yang <65449710+realethanyang@users.noreply.github.com> Date: Wed, 21 May 2025 23:33:56 +0800 Subject: [PATCH] Update state.ipynb, fix a grammar error (#6448) Fix a grammar error, change "your" to "you". ## Why are these changes needed? ## Related issue number ## Checks - [ ] I've included any doc changes needed for . See to build and test documentation locally. - [ ] I've added tests (if relevant) corresponding to the changes introduced in this PR. - [ ] I've made sure all auto checks have passed. --- .../src/user-guide/agentchat-user-guide/tutorial/state.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/tutorial/state.ipynb b/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/tutorial/state.ipynb index 05e799eb1..636841d08 100644 --- a/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/tutorial/state.ipynb +++ b/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/tutorial/state.ipynb @@ -112,7 +112,7 @@ "source": [ "```{note}\n", "For {py:class}`~autogen_agentchat.agents.AssistantAgent`, its state consists of the model_context.\n", - "If your write your own custom agent, consider overriding the {py:meth}`~autogen_agentchat.agents.BaseChatAgent.save_state` and {py:meth}`~autogen_agentchat.agents.BaseChatAgent.load_state` methods to customize the behavior. The default implementations save and load an empty state.\n", + "If you write your own custom agent, consider overriding the {py:meth}`~autogen_agentchat.agents.BaseChatAgent.save_state` and {py:meth}`~autogen_agentchat.agents.BaseChatAgent.load_state` methods to customize the behavior. The default implementations save and load an empty state.\n", "```" ] },