Skip to content

Commit b2b7f2d

Browse files
GWealecopybara-github
authored andcommitted
chore: Move adk_agent_builder_assistant to built_in_agents
Co-authored-by: George Weale <gweale@google.com> PiperOrigin-RevId: 834371390
1 parent 3ad30a5 commit b2b7f2d

24 files changed

+19
-1
lines changed
File renamed without changes.

contributing/samples/adk_agent_builder_assistant/__init__.py renamed to src/google/adk/cli/built_in_agents/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
using YAML configurations. It can be used directly as an agent or integrated
1919
with ADK tools and web interfaces.
2020
"""
21+
from __future__ import annotations
2122

2223
from . import agent # Import to make agent.root_agent available
2324
from .agent_builder_assistant import AgentBuilderAssistant

contributing/samples/adk_agent_builder_assistant/agent.py renamed to src/google/adk/cli/built_in_agents/agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Agent Builder Assistant instance for ADK web testing."""
16+
from __future__ import annotations
1617

1718
from .agent_builder_assistant import AgentBuilderAssistant
1819

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Agent factory for creating Agent Builder Assistant with embedded schema."""
16+
from __future__ import annotations
1617

1718
from pathlib import Path
1819
import textwrap

contributing/samples/adk_agent_builder_assistant/sub_agents/__init__.py renamed to src/google/adk/cli/built_in_agents/sub_agents/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Sub-agents for Agent Builder Assistant."""
16+
from __future__ import annotations
1617

1718
from .google_search_agent import create_google_search_agent
1819
from .url_context_agent import create_url_context_agent
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Sub-agent for Google Search functionality."""
16+
from __future__ import annotations
1617

1718
from google.adk.agents import LlmAgent
1819
from google.adk.tools import google_search
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Sub-agent for URL context fetching functionality."""
16+
from __future__ import annotations
1617

1718
from google.adk.agents import LlmAgent
1819
from google.adk.tools import url_context

contributing/samples/adk_agent_builder_assistant/tools/__init__.py renamed to src/google/adk/cli/built_in_agents/tools/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
"""Tools for Agent Builder Assistant."""
16+
from __future__ import annotations
1617

1718
from .cleanup_unused_files import cleanup_unused_files
1819
from .delete_files import delete_files

0 commit comments

Comments
 (0)