From 3f66575a8ce6563562eabcc98e0dac8305517dcf Mon Sep 17 00:00:00 2001 From: "hanzhi.421" Date: Mon, 4 Aug 2025 11:19:16 +0800 Subject: [PATCH] fix(deploy sample): correct message_id error --- samples/template-project-for-vefaas/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/template-project-for-vefaas/deploy.py b/samples/template-project-for-vefaas/deploy.py index ca05676a..cefb3df1 100644 --- a/samples/template-project-for-vefaas/deploy.py +++ b/samples/template-project-for-vefaas/deploy.py @@ -33,7 +33,7 @@ async def main(): "How is the weather like in Beijing?", SESSION_ID, USER_ID ) - print(f"Message ID: {response_message.messageId}") + print(f"Message ID: {response_message.message_id}") print(f"Response from {cloud_app.endpoint}: {response_message.parts[0].root.text}")