From 3c66ae42b9c3ef9c9649a46e9560309c96970e99 Mon Sep 17 00:00:00 2001 From: zhengzhe17 Date: Sun, 12 Oct 2025 10:41:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E7=9A=84=E6=98=AFagent=EF=BC=8C?= =?UTF-8?q?=E8=BF=99=E4=B8=AA=E5=9C=B0=E6=96=B9=E5=86=99messages=E4=BC=9A?= =?UTF-8?q?=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs_zh/1_1_chat_with_agent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")