chore(config): Moves agent configs to separate python files

PiperOrigin-RevId: 787245794
This commit is contained in:
Wei Sun (Jack)
2025-07-25 14:40:49 -07:00
committed by Copybara-Service
parent 6419a2aa9b
commit ec7d9b0ff6
11 changed files with 264 additions and 172 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
from typing import Literal
from google.adk.agents.agent_config import AgentConfig
from google.adk.agents.agent_config import LlmAgentConfig
from google.adk.agents.agent_config import LoopAgentConfig
from google.adk.agents.agent_config import ParallelAgentConfig
from google.adk.agents.agent_config import SequentialAgentConfig
from google.adk.agents.base_agent_config import BaseAgentConfig
from google.adk.agents.llm_agent_config import LlmAgentConfig
from google.adk.agents.loop_agent_config import LoopAgentConfig
from google.adk.agents.parallel_agent_config import ParallelAgentConfig
from google.adk.agents.sequential_agent_config import SequentialAgentConfig
import yaml