-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
48 lines (45 loc) · 2 KB
/
Copy pathconfig.example.json
File metadata and controls
48 lines (45 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"ai": {
"provider": "anthropic",
"model": "claude-haiku-4-5-20251001",
"api_key_env": "ANTHROPIC_API_KEY",
"language": "en"
},
"filtering": {
"time_window_hours": 24,
"ai_score_threshold": 6.0,
"dormant_after_days": 30
},
"sources": {
"rss": [
{ "name": "Simon Willison", "url": "https://simonwillison.net/atom/everything/" },
{ "name": "GitHub Trending", "url": "https://mshibanami.github.io/GitHubTrendingRSS/daily/all.xml" },
{ "name": "OpenAI News", "url": "https://openai.com/news/rss.xml" },
{ "name": "Anthropic News", "url": "https://www.anthropic.com/news/rss.xml" },
{ "name": "Google AI Blog", "url": "https://blog.google/technology/ai/rss/" },
{ "name": "DeepMind Blog", "url": "https://deepmind.google/blog/rss.xml" },
{ "name": "Hugging Face Blog", "url": "https://huggingface.co/blog/feed.xml" },
{ "name": "Latent Space", "url": "https://www.latent.space/feed" },
{ "name": "Interconnects", "url": "https://www.interconnects.ai/feed" },
{ "name": "Import AI", "url": "https://jack-clark.net/feed/" },
{ "name": "The Gradient", "url": "https://thegradient.pub/rss/" },
{ "name": "Sebastian Raschka", "url": "https://magazine.sebastianraschka.com/feed" },
{ "name": "SemiAnalysis", "url": "https://semianalysis.com/feed/" },
{ "name": "ServeTheHome", "url": "https://www.servethehome.com/feed/" },
{ "name": "Phoronix", "url": "https://www.phoronix.com/rss.php" }
],
"hackernews": {
"enabled": true,
"top_n": 50,
"min_points": 50
},
"reddit": {
"enabled": false,
"subreddits": [
{ "subreddit": "MachineLearning", "sort": "hot", "fetch_limit": 25, "min_score": 50 },
{ "subreddit": "LocalLLaMA", "sort": "hot", "fetch_limit": 25, "min_score": 30 },
{ "subreddit": "hardware", "sort": "hot", "fetch_limit": 25, "min_score": 100 }
]
}
}
}