Add ADK Agent implementation #1

Merged
A8065384 merged 6 commits from adk into main 2026-02-23 05:27:45 +00:00
Showing only changes of commit 98d23b80e4 - Show all commits

View File

@@ -1 +1,10 @@
from . import agent """Package export for the ADK root agent."""
import os
# Ensure the Google GenAI SDK talks to Vertex AI instead of the public Gemini API.
os.environ.setdefault("GOOGLE_GENAI_USE_VERTEXAI", "true")
from .agent import root_agent
__all__ = ["root_agent"]