mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-14 09:51:25 -06:00
Merge branch 'main' into google-search-display
This commit is contained in:
commit
353ff50611
@ -45,10 +45,9 @@ class AgentTool(BaseTool):
|
||||
skip_summarization: Whether to skip summarization of the agent output.
|
||||
"""
|
||||
|
||||
def __init__(self, agent: BaseAgent):
|
||||
def __init__(self, agent: BaseAgent, skip_summarization: bool = False):
|
||||
self.agent = agent
|
||||
self.skip_summarization: bool = False
|
||||
"""Whether to skip summarization of the agent output."""
|
||||
self.skip_summarization: bool = skip_summarization
|
||||
|
||||
super().__init__(name=agent.name, description=agent.description)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user