deep-research-ai / src /__init__.py
debashis2007's picture
Simplify init to avoid import errors
cce8ace verified
Raw
History Blame Contribute Delete
659 Bytes
"""
Deep Research AI
"""
__version__ = "1.0.0"
__author__ = "Deep Research AI Team"
# Lazy imports to avoid circular dependencies
def __getattr__(name):
if name == "Config":
from .config import Config
return Config
elif name == "LLMClient":
from .llm_client import LLMClient
return LLMClient
elif name == "research":
from .orchestrator import research
return research
raise AttributeError(f"module {__name__rm /Users/deb/Development/GenAI/CustomerSupportChatbot/huggingface_space/app.py} has no attribute {namerm /Users/deb/Development/GenAI/CustomerSupportChatbot/huggingface_space/app.py}")