Added citation and quality metrics to the content editor.

This commit is contained in:
ajaysi
2025-09-03 09:40:05 +05:30
parent 10b50f9732
commit 5efee4235d
35 changed files with 6987 additions and 1123 deletions

View File

@@ -0,0 +1,21 @@
"""
Research Services Module for ALwrity
This module provides research and grounding capabilities for content generation,
replacing mock research with real-time industry information.
Available Services:
- GoogleSearchService: Real-time industry research using Google Custom Search API
- Source ranking and credibility assessment
- Content extraction and insight generation
Author: ALwrity Team
Version: 1.0
Last Updated: January 2025
"""
from services.research.google_search_service import GoogleSearchService
__all__ = [
"GoogleSearchService"
]