Skip to content

Commit 4fb9f16

Browse files
authored
feat: update version (#63)
* feat: update version * fix: dependencies
1 parent 1fffa28 commit 4fb9f16

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ authors = [
1212
]
1313
dependencies = [
1414
"pydantic-settings>=2.10.1", # Config management
15-
"a2a-sdk==0.2.12", # For Google Agent2Agent protocol
15+
"a2a-sdk==0.3.1", # For Google Agent2Agent protocol
1616
"deprecated>=1.2.18",
17-
"google-adk==1.8.0", # For basic agent architecture
17+
"google-adk==1.11.0", # For basic agent architecture
1818
"litellm>=1.74.3", # For model inference
1919
"loguru>=0.7.3", # For better logging
2020
"openinference-instrumentation-google-adk>=0.1.1", # For OpenInference instrumentation
2121
"opentelemetry-exporter-otlp>=1.35.0",
2222
"opentelemetry-instrumentation-logging>=0.56b0",
2323
"wrapt>=1.17.2", # For patching built-in functions
24+
"typer>=0.16.0", # For command-line implementation
2425
]
2526

2627
[project.scripts]
@@ -41,8 +42,6 @@ eval = [
4142
]
4243
cli = [
4344
"volcengine-python-sdk==4.0.3", # For Volcengine API
44-
"typer>=0.16.0", # For command-line implementation
45-
"streamlit==1.46.1", # For running VeADK studio app
4645
"agent-pilot-sdk>=0.0.9", # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
4746
"fastmcp>=2.11.3", # For running MCP
4847
]

veadk/a2a/remote_ve_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from a2a.types import AgentCard
1919
from google.adk.agents.remote_a2a_agent import RemoteA2aAgent
2020

21-
AGENT_CARD_WELL_KNOWN_PATH = "/.well-known/agent.json"
21+
AGENT_CARD_WELL_KNOWN_PATH = "/.well-known/agent-card.json"
2222

2323

2424
class RemoteVeAgent(RemoteA2aAgent):

veadk/cli/services/vefaas/template/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async def main():
4848
query_example, SESSION_ID, USER_ID
4949
)
5050
print(f"VeFaaS application ID: {cloud_app.vefaas_application_id}")
51-
print(f"Message ID: {response_message.messageId}")
51+
print(f"Message ID: {response_message.message_id}")
5252
print(
5353
f"Response from {cloud_app.vefaas_endpoint}: {response_message.parts[0].root.text}"
5454
)

0 commit comments

Comments
 (0)