企業內部新聞彙整與分析系統 - 自動新聞抓取 (Digitimes, 經濟日報, 工商時報) - AI 智慧摘要 (OpenAI/Claude/Ollama) - 群組管理與訂閱通知 - 已清理 Python 快取檔案 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
566 B
Python
20 lines
566 B
Python
"""
|
|
服務模組
|
|
"""
|
|
from app.services.llm_service import generate_summary, test_llm_connection
|
|
from app.services.notification_service import send_email, send_report_notifications
|
|
from app.services.crawler_service import get_crawler, BaseCrawler
|
|
from app.services.scheduler_service import init_scheduler, shutdown_scheduler, run_daily_crawl
|
|
|
|
__all__ = [
|
|
"generate_summary",
|
|
"test_llm_connection",
|
|
"send_email",
|
|
"send_report_notifications",
|
|
"get_crawler",
|
|
"BaseCrawler",
|
|
"init_scheduler",
|
|
"shutdown_scheduler",
|
|
"run_daily_crawl"
|
|
]
|