You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-03-30 10:57:20 -07:00
chore: Move adk_agent_builder_assistant to built_in_agents
Co-authored-by: George Weale <gweale@google.com> PiperOrigin-RevId: 834371390
This commit is contained in:
committed by
Copybara-Service
parent
3ad30a58f9
commit
b2b7f2d6aa
+1
@@ -18,6 +18,7 @@ This package provides an intelligent assistant for building multi-agent systems
|
||||
using YAML configurations. It can be used directly as an agent or integrated
|
||||
with ADK tools and web interfaces.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
from . import agent # Import to make agent.root_agent available
|
||||
from .agent_builder_assistant import AgentBuilderAssistant
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Agent Builder Assistant instance for ADK web testing."""
|
||||
from __future__ import annotations
|
||||
|
||||
from .agent_builder_assistant import AgentBuilderAssistant
|
||||
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Agent factory for creating Agent Builder Assistant with embedded schema."""
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
import textwrap
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Sub-agents for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from .google_search_agent import create_google_search_agent
|
||||
from .url_context_agent import create_url_context_agent
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Sub-agent for Google Search functionality."""
|
||||
from __future__ import annotations
|
||||
|
||||
from google.adk.agents import LlmAgent
|
||||
from google.adk.tools import google_search
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Sub-agent for URL context fetching functionality."""
|
||||
from __future__ import annotations
|
||||
|
||||
from google.adk.agents import LlmAgent
|
||||
from google.adk.tools import url_context
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Tools for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from .cleanup_unused_files import cleanup_unused_files
|
||||
from .delete_files import delete_files
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""File deletion tool for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime
|
||||
from pathlib import Path
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Project explorer tool for analyzing structure and suggesting file paths."""
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""ADK AgentConfig schema query tool for dynamic schema information access."""
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
from typing import Dict
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Configuration file reader tool for existing YAML configs."""
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""File reading tool for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""ADK knowledge search tool."""
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
import uuid
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""ADK source code search tool for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
import re
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""File writing tool for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import datetime
|
||||
from pathlib import Path
|
||||
+1
@@ -13,6 +13,7 @@
|
||||
# limitations under the License.
|
||||
|
||||
"""Utility modules for Agent Builder Assistant."""
|
||||
from __future__ import annotations
|
||||
|
||||
from .adk_source_utils import find_adk_source_folder
|
||||
from .adk_source_utils import get_adk_schema_path
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user