""" 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__ = []