Include latest fixes in onboarding feature branch

- Include route protection implementation
- Include Google Search API warning removal
- Include Stability AI import fixes
- Include updated README and removed SETUP_GUIDE
- Ensure feature branch has all latest improvements
This commit is contained in:
ajaysi
2025-09-24 12:53:30 +05:30
committed by DikshaDisciplines
parent d86336dcf1
commit 8c924b3ee9
3 changed files with 59 additions and 450 deletions

View File

@@ -37,12 +37,8 @@ class LinkedInService:
def __init__(self):
"""Initialize the LinkedIn service with all required components."""
try:
self.google_search = GoogleSearchService()
logger.info("✅ Google Search Service initialized")
except Exception as e:
logger.warning(f"⚠️ Google Search Service not available: {e}")
self.google_search = None
# Google Search Service not used - removed to avoid false warnings
self.google_search = None
try:
self.gemini_grounded = GeminiGroundedProvider()