refactored: to utilise the google adk and production grade agent
Some checks failed
validation / verify (push) Failing after 10s

This commit is contained in:
2026-09-02 21:42:10 +01:00
parent b9a924cf4a
commit a24a44e28c
279 changed files with 12003 additions and 390 deletions

31
app/adk/__init__.py Normal file
View File

@@ -0,0 +1,31 @@
"""ADK package for GCP Solution Architecture Agent."""
from .agents import (
ArchitectureDesignAgent,
DiscoveryAgent,
OrchestratorLoopAgent,
PackagingAgent,
ValidationReviewAgent,
build_adk_multi_agent_system,
)
from .artifacts import PostgresArtifactRepository
from .evaluation import ADKEvaluator
from .runners import ADKAgentRunner
from .sessions import PostgresSessionService
from .tools import ADK_TOOLS
from .workflows import create_gcp_adk_workflow
__all__ = [
"DiscoveryAgent",
"ArchitectureDesignAgent",
"ValidationReviewAgent",
"PackagingAgent",
"OrchestratorLoopAgent",
"build_adk_multi_agent_system",
"PostgresArtifactRepository",
"PostgresSessionService",
"ADKAgentRunner",
"ADKEvaluator",
"ADK_TOOLS",
"create_gcp_adk_workflow",
]