Skip to content

Commit 573cd97

Browse files
committed
Fix sorting in _LAZY_IMPORTS and __all__ in src/google/adk/agents/__init__.py
1 parent c4db8ee commit 573cd97

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/google/adk/agents/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
import importlib
3333

3434
_LAZY_IMPORTS = {
35+
"Agent": ".llm_agent",
3536
"BaseAgent": ".base_agent",
3637
"Context": ".context",
3738
"InvocationContext": ".invocation_context",
3839
"LiveRequest": ".live_request_queue",
3940
"LiveRequestQueue": ".live_request_queue",
40-
"Agent": ".llm_agent",
4141
"LlmAgent": ".llm_agent",
4242
"LoopAgent": ".loop_agent",
4343
"McpInstructionProvider": ".mcp_instruction_provider",
@@ -56,13 +56,13 @@ def __getattr__(name: str):
5656
'Agent',
5757
'BaseAgent',
5858
'Context',
59+
'InvocationContext',
60+
'LiveRequest',
61+
'LiveRequestQueue',
5962
'LlmAgent',
6063
'LoopAgent',
6164
'McpInstructionProvider',
6265
'ParallelAgent',
63-
'SequentialAgent',
64-
'InvocationContext',
65-
'LiveRequest',
66-
'LiveRequestQueue',
6766
'RunConfig',
67+
'SequentialAgent',
6868
]

0 commit comments

Comments
 (0)