Spaces:
Sleeping
Sleeping
| """ | |
| 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}") | |