Added citation and quality metrics to the content editor.
This commit is contained in:
21
backend/services/research/__init__.py
Normal file
21
backend/services/research/__init__.py
Normal 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"
|
||||
]
|
||||
Reference in New Issue
Block a user