17 lines
492 B
Python
17 lines
492 B
Python
"""Session management - multi-turn conversation support for AgentKit."""
|
|
|
|
from agentkit.session.models import Message, MessageRole, Session, SessionStatus
|
|
from agentkit.session.manager import SessionManager
|
|
from agentkit.session.store import InMemorySessionStore, RedisSessionStore, create_session_store
|
|
|
|
__all__ = [
|
|
"Message",
|
|
"MessageRole",
|
|
"Session",
|
|
"SessionStatus",
|
|
"SessionManager",
|
|
"InMemorySessionStore",
|
|
"RedisSessionStore",
|
|
"create_session_store",
|
|
]
|