From e2275b264ef474c21954b21a967af166168a7957 Mon Sep 17 00:00:00 2001 From: "hanzhi.421" Date: Mon, 4 Aug 2025 12:06:47 +0800 Subject: [PATCH] fix: dependencies version --- pyproject.toml | 4 ++-- samples/template-project-for-vefaas/deploy.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3ad6e903..315d2404 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ authors = [ ] dependencies = [ "pydantic-settings>=2.10.1", # Config management - "a2a-sdk>=0.2.12", # For Google Agent2Agent protocol + "a2a-sdk==0.2.12", # For Google Agent2Agent protocol "deprecated>=1.2.18", - "google-adk>=1.6.1", # For basic agent architecture + "google-adk==1.8.0", # For basic agent architecture "litellm>=1.74.3", # For model inference "loguru>=0.7.3", # For better logging "openinference-instrumentation-google-adk>=0.1.1", # For OpenInference instrumentation diff --git a/samples/template-project-for-vefaas/deploy.py b/samples/template-project-for-vefaas/deploy.py index cefb3df1..ca05676a 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.message_id}") + print(f"Message ID: {response_message.messageId}") print(f"Response from {cloud_app.endpoint}: {response_message.parts[0].root.text}")