NextQuest.ai / src /__init__.py
ajeet9843
Deploy to Hugging Face Spaces
f10fe83
raw
history blame contribute delete
550 Bytes
"""NexusAI - Multi-Agent Research Assistant
A Perplexity-like AI system with:
- LangGraph-based multi-agent orchestration
- Web search (Tavily, DuckDuckGo, Serper)
- LLM reasoning (OpenAI, Anthropic)
- Gradio UI for HuggingFace Spaces
"""
__version__ = "1.0.0"
__author__ = "NexusAI Team"
from .config import config, Config
from .models import AgentState, SearchResult, ScrapedContent
from .workflow import research_graph
__all__ = [
"config",
"Config",
"AgentState",
"SearchResult",
"ScrapedContent",
"research_graph",
]