Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/strands/experimental/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
"""Experimental features.

This module implements experimental features that are subject to change in future revisions without notice.

Available submodules:
- conversation_manager: Experimental conversation management strategies
- tools: Experimental tool providers

Note: Import experimental features directly from their submodules to avoid circular dependencies.
Example: from strands.experimental.conversation_manager import MappingConversationManager
"""

from . import tools
Expand Down
16 changes: 16 additions & 0 deletions src/strands/experimental/conversation_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""Experimental conversation management strategies.

This module implements experimental conversation managers that are subject to change.
"""

from .mapping_conversation_manager import (
LargeToolResultMapper,
MappingConversationManager,
MessageMapper,
)

__all__ = [
"MappingConversationManager",
"MessageMapper",
"LargeToolResultMapper",
]
Loading