File size: 268 Bytes
8f05ad1
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Collaboration Module

Provides collaboration features and conversational flow management.
"""

from .conversation_state import ConversationStateManager
from .mcp_integration import MCPIntegration

__all__ = [
    "ConversationStateManager",
    "MCPIntegration",
]