Skip to content

Commit 9d9c10a

Browse files
author
Ro-ee Tal
committed
feat: implemented pruning/mapping conversation manager
1 parent 73865d3 commit 9d9c10a

File tree

5 files changed

+875
-0
lines changed

5 files changed

+875
-0
lines changed

src/strands/experimental/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
"""Experimental features.
22
33
This module implements experimental features that are subject to change in future revisions without notice.
4+
5+
Available submodules:
6+
- conversation_manager: Experimental conversation management strategies
7+
- tools: Experimental tool providers
8+
9+
Note: Import experimental features directly from their submodules to avoid circular dependencies.
10+
Example: from strands.experimental.conversation_manager import MappingConversationManager
411
"""
512

613
from . import tools
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""Experimental conversation management strategies.
2+
3+
This module implements experimental conversation managers that are subject to change.
4+
"""
5+
6+
from .mapping_conversation_manager import (
7+
LargeToolResultMapper,
8+
MappingConversationManager,
9+
MessageMapper,
10+
)
11+
12+
__all__ = [
13+
"MappingConversationManager",
14+
"MessageMapper",
15+
"LargeToolResultMapper",
16+
]

0 commit comments

Comments
 (0)