File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ ipython_config.py
9898# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
9999# This is especially recommended for binary packages to ensure reproducibility, and is more
100100# commonly ignored for libraries.
101- # uv.lock
101+ uv.lock
102102
103103# poetry
104104# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
Original file line number Diff line number Diff line change 3939from veadk .tracing .base_tracer import BaseTracer
4040from veadk .utils .logger import get_logger
4141from veadk .utils .patches import patch_asyncio
42+ from google .adk .agents .base_agent import BaseAgent
4243
4344patch_asyncio ()
4445logger = get_logger (__name__ )
@@ -77,7 +78,7 @@ class Agent(LlmAgent):
7778 tools : list [ToolUnion ] = []
7879 """The tools provided to agent."""
7980
80- sub_agents : list [Agent ] = Field (default_factory = list , exclude = True )
81+ sub_agents : list [BaseAgent ] = Field (default_factory = list , exclude = True )
8182 """The sub agents provided to agent."""
8283
8384 knowledgebase : Optional [KnowledgeBase ] = None
You can’t perform that action at this time.
0 commit comments