File size: 355 Bytes
66dbebd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""
Research Assistant MVP Package
"""
__version__ = "1.0.0"
__author__ = "Research Assistant Team"
__description__ = "Academic AI assistant with transparent reasoning"
# Import key components for easy access
try:
from .config import settings
__all__ = ['settings']
except ImportError:
# Fallback if config is not available
__all__ = []
|