diff --git a/docs/docs_zh/1_1_chat_with_agent.md b/docs/docs_zh/1_1_chat_with_agent.md index 942453f..53f5faf 100644 --- a/docs/docs_zh/1_1_chat_with_agent.md +++ b/docs/docs_zh/1_1_chat_with_agent.md @@ -63,7 +63,7 @@ async def chat(): history.append({"role": "user", "content": user_in}) result = await mas.call( callee="master_agent", - arguments={"messages": history}, + arguments={"query": history}, ) assistant_out = result print(f"Assistant: {assistant_out}\n")