tsa-shiny-agent / agent /src /__init__.py
mmrech's picture
Initial deployment of TSA Shiny Agent
026774a verified
Raw
History Blame Contribute Delete
578 Bytes
# TSA Agent - Claude Agent SDK Implementation
# Trial Sequential Analysis Expert Agent
"""
TSA Agent provides an AI-powered interface for Trial Sequential Analysis.
This module includes:
- TSAAgent: Main agent class with session management
- TSA tools for meta-analysis, trial management, boundaries, and statistics
- Knowledge base for TSA concepts and algorithms
"""
__version__ = "0.9.5"
__author__ = "TSA Team"
from .tsa_agent import TSAAgent, create_tsa_mcp_server, TSA_SYSTEM_PROMPT
__all__ = [
"TSAAgent",
"create_tsa_mcp_server",
"TSA_SYSTEM_PROMPT",
]