-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconfig.json.example
More file actions
34 lines (34 loc) · 1.06 KB
/
config.json.example
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"ALLOWED_USER_IDS": {
"123456789": "John Doe",
"987654321": "Jane Smith"
},
"OPENAI_API_KEY": "****",
"TELEGRAM_TOKEN": "****",
"ANTHROPIC_API_KEY": "****",
"DEFAULT_LLM_MODEL": "claude-haiku-4-5",
"OLLAMA_HOST": "http://127.0.0.1:11434",
"REPLICATE_API_KEY": "",
"YT_DL_DIR": "/var/data/uploads",
"YT_DL_URL": "https://somehost.com/uploads",
"MCP_FETCH_URL": "http://mcp_fetch_node:8080/sse",
"SCHEDULES": 1,
"USER_PERMISSIONS": {
"123456789": {
"is_admin": true,
"can_use_tools": true,
"can_use_ollama_llm_models": true,
"can_use_replicate_models": true,
"can_use_memory_tool": true,
"exclude_replicate_models": []
},
"default": {
"is_admin": false,
"can_use_tools": true,
"can_use_ollama_llm_models": false,
"can_use_replicate_models": false,
"can_use_memory_tool": false,
"exclude_replicate_models": ["veo-3.1", "veo-3.1-fast"]
}
}
}