Skip to content

Commit 4b90b88

Browse files
authored
refactor: Remove event_loop_cycle from top level import (#415)
1 parent 19db55c commit 4b90b88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/strands/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""A framework for building, deploying, and managing AI agents."""
22

3-
from . import agent, event_loop, models, telemetry, types
3+
from . import agent, models, telemetry, types
44
from .agent.agent import Agent
55
from .tools.decorator import tool
66

7-
__all__ = ["Agent", "agent", "event_loop", "models", "tool", "types", "telemetry"]
7+
__all__ = ["Agent", "agent", "models", "tool", "types", "telemetry"]

0 commit comments

Comments
 (0)