# llm_aggregator configuration file # Location: ~/.config/llm_aggregator/config.toml # Feed aggregation options max_articles_per_feed = 10 max_days_old = 7 max_total_articles = 20 # Content filtering (comma-separated keywords) # include_keywords = "linux,opensource" # exclude_keywords = "windows,microsoft" # LLM API options # api_key = "your_api_key_here" # Can also be set via LLM_AGGREGATOR_API_KEY env var model = "deepseek-chat" max_tokens = 4000 temperature = 0.7 # System prompt for LLM API system_prompt = """You are an expert analyst and summariser. You analyse content from multiple sources and provide concise, insightful summaries based on user requests. Focus on key points, trends, and important information.""" # Output options output = "text" # Options: text, json, markdown # output_file = "" # Optional output file path include_articles = false