8 lines
238 B
Python
8 lines
238 B
Python
"""Client Agent context aliases during the architecture bootstrap phase."""
|
|
|
|
from agent.customer_agent.context import RedisConversationContext
|
|
|
|
ClientConversationContext = RedisConversationContext
|
|
|
|
__all__ = ["ClientConversationContext"]
|