Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:51:24 +08:00
commit af30225584
13 changed files with 2319 additions and 0 deletions

12
agent/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
# Copyright 2025 Jeremy Longshore
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
"""ADK Orchestrator Agent - A2A protocol manager for Vertex AI Engine"""
from .agent import get_agent, create_runner, root_agent
__all__ = ["get_agent", "create_runner", "root_agent"]
__version__ = "1.0.0"