Added onboarding progress tracking & landing page

This commit is contained in:
ajaysi
2025-10-02 13:20:15 +05:30
parent e57d2577f8
commit 510b79bbf8
135 changed files with 25917 additions and 5768 deletions

View File

@@ -6,6 +6,7 @@ replacing mock research with real-time industry information.
Available Services:
- GoogleSearchService: Real-time industry research using Google Custom Search API
- ExaService: Competitor discovery and analysis using Exa API
- Source ranking and credibility assessment
- Content extraction and insight generation
@@ -14,8 +15,10 @@ Version: 1.0
Last Updated: January 2025
"""
from services.research.google_search_service import GoogleSearchService
from .google_search_service import GoogleSearchService
from .exa_service import ExaService
__all__ = [
"GoogleSearchService"
"GoogleSearchService",
"ExaService"
]