-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.json.example
More file actions
61 lines (61 loc) · 1.24 KB
/
Copy pathconfig.json.example
File metadata and controls
61 lines (61 loc) · 1.24 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
51
52
53
54
55
56
57
58
59
60
61
{
"api_keys": {
"anthropic": {
"api_key": "sk-ant-xxx",
"base_url": "https://api.anthropic.com"
},
"openai": {
"api_key": "sk-xxx",
"base_url": "https://api.openai.com/v1"
},
"mistral": {
"api_key": "xxx",
"base_url": "https://api.mistral.ai"
},
"browser_use_cloud": {
"api_key": "bu_xxx"
}
},
"telegram": {
"bot_token": "xxx",
"chat_id": "xxx"
},
"database": {
"url": "sqlite:///data/pagefly.db"
},
"models": {
"classifier": "claude-sonnet-4-6",
"agent": "claude-sonnet-4-6",
"transcription": "gpt-4o-transcribe"
},
"watcher": {
"inbox_dir": "data/inbox",
"parallel_limit": 3
},
"scheduler": {
"daily_review": "0 22 * * *",
"weekly_review": "0 22 * * 0",
"monthly_review": "0 22 1 * *",
"compiler": "0 2 * * *",
"chat_archive": "55 23 * * *"
},
"notifications": {
"telegram": true
},
"api": {
"port": 8000,
"master_token": "your-master-token-change-this",
"max_upload_mb": 50
},
"auth": {
"account": "you@example.com",
"password_hash": "",
"totp_secret": "",
"resend_api_key": "",
"jwt_secret": "",
"jwt_expiry_hours": 24
},
"app": {
"log_level": "INFO"
}
}