Skip to content

Commit 36d7136

Browse files
Poggeccicopybara-github
authored andcommitted
chore:Update adk web to facilitate internal usage
PiperOrigin-RevId: 763560809
1 parent 86e15ca commit 36d7136

File tree

5 files changed

+178
-73
lines changed

5 files changed

+178
-73
lines changed

src/google/adk/cli/agent_graph.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
import graphviz
2121

22-
from ..agents import BaseAgent
23-
from ..agents import LoopAgent
24-
from ..agents import ParallelAgent
25-
from ..agents import SequentialAgent
22+
from ..agents.base_agent import BaseAgent
2623
from ..agents.llm_agent import LlmAgent
24+
from ..agents.loop_agent import LoopAgent
25+
from ..agents.parallel_agent import ParallelAgent
26+
from ..agents.sequential_agent import SequentialAgent
2727
from ..tools.agent_tool import AgentTool
2828
from ..tools.base_tool import BaseTool
2929
from ..tools.function_tool import FunctionTool

src/google/adk/cli/cli_eval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from typing import Optional
2525
import uuid
2626

27-
from ..agents import Agent
27+
from ..agents.llm_agent import Agent
2828
from ..artifacts.base_artifact_service import BaseArtifactService
2929
from ..evaluation.eval_case import EvalCase
3030
from ..evaluation.eval_metrics import EvalMetric

0 commit comments

Comments
 (0)