daily 自建 Cursor bridge;DAILY_LLM_PROVIDER 控制后端;config/feeds.yaml 与 sensitive_words 可配置。 Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
339 B
Python
11 lines
339 B
Python
"""国际 AI 时讯 RSS 源(优先 config/feeds.yaml)。"""
|
||
|
||
from __future__ import annotations
|
||
|
||
from daily.news.feeds_loader import load_categories
|
||
from daily.news.feeds_types import NewsCategory, NewsFeed
|
||
|
||
NEWS_CATEGORIES: tuple[NewsCategory, ...] = load_categories("intl")
|
||
|
||
__all__ = ["NewsCategory", "NewsFeed", "NEWS_CATEGORIES"]
|