优化情报分栏和日报展示

This commit is contained in:
Codex
2026-07-08 23:39:41 +08:00
parent 88e1cf4b7a
commit 8e15211f07
16 changed files with 371 additions and 93 deletions
+4 -4
View File
@@ -16,13 +16,13 @@ class Settings(BaseSettings):
llm_api_key: str = ""
llm_model: str = "grok-4.3"
llm_timeout_seconds: int = 90
llm_max_tokens: int = 4000
llm_max_tokens: int = 8000
news_recent_days: int = 3
news_max_items: int = 12
news_search_max_records: int = 20
news_max_items: int = 60
news_search_max_records: int = 100
github_recent_days: int = 30
github_min_stars: int = 20
github_max_projects: int = 5
github_max_projects: int = 40
agent_timezone: str = "Asia/Shanghai"
agent_interval_minutes: int = 30
report_dir: Path = Path("reports")