-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.example.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathsettings.example.json
File metadata and controls
50 lines (50 loc) · 1.19 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
49
50
{
"ollama": {
"host": "http://localhost:11434",
"model": "smollm2:135m",
"overview_model": "llama2",
"timeout": 120
},
"processing": {
"max_overview_summaries": 50,
"scrape_timeout": 30,
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
},
"prompts": {
"article_summary": "Summarize this article briefly:",
"overview_summary": "Based on the following news summaries, provide a comprehensive overview..."
},
"files": {
"sources": "sources.json",
"summaries": "summaries.json",
"database": "news_reader.db"
},
"output": {
"channels": {
"discord-main": {
"type": "discord",
"config": {
"bot_token": "YOUR_DISCORD_BOT_TOKEN",
"channel_id": "YOUR_CHANNEL_ID"
}
},
"telegram-news": {
"type": "telegram",
"config": {
"bot_token": "YOUR_TELEGRAM_BOT_TOKEN",
"chat_id": "YOUR_CHAT_ID"
}
},
"console": {
"type": "console",
"config": {
"output_file": null
}
}
}
},
"timezone": "UTC",
"overview_interval_hours": 24,
"overview_start_time": "04:00",
"interval": 60
}