-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json.example
More file actions
80 lines (80 loc) · 2.06 KB
/
config.json.example
File metadata and controls
80 lines (80 loc) · 2.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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"defaultModel": "grok",
"models": {
"grok": {
"apiKey": "YOUR_GROK_API_KEY_FROM_X_AI_CONSOLE",
"baseURL": "https://api.x.ai/v1",
"model": "grok-beta",
"availableModels": [
"grok-beta",
"grok-2-1212",
"grok-2-vision-1212"
],
"timeout": 120000,
"maxRetries": 3,
"temperature": 0.3,
"maxTokens": 4000,
"supportsFunctionCalling": true
},
"chatgpt": {
"apiKey": "YOUR_OPENAI_API_KEY_FROM_PLATFORM_OPENAI_COM",
"baseURL": "https://api.openai.com/v1",
"model": "gpt-4.1",
"availableModels": [
"gpt-4.1",
"gpt-4.1-mini",
"gpt-4o",
"gpt-4o-mini",
"gpt-4-turbo"
],
"timeout": 30000,
"maxRetries": 3,
"temperature": 1,
"maxTokens": 4000,
"supportsFunctionCalling": true
},
"gemini": {
"apiKey": "YOUR_GOOGLE_AI_STUDIO_API_KEY_FROM_AISTUDIO_GOOGLE_COM",
"baseURL": "https://generativelanguage.googleapis.com/v1beta/openai/",
"model": "gemini-2.5-flash",
"availableModels": [
"gemini-2.5-flash-lite",
"gemini-2.5-flash",
"gemini-flash-lite-latest"
],
"timeout": 30000,
"maxRetries": 3,
"temperature": 0.3,
"maxTokens": 4000,
"supportsFunctionCalling": true
}
},
"defaultDuration": 10,
"browser": {
"timeout": 90000,
"sanitizationLevel": "medium"
},
"feedServers": [
{
"baseUrl": "https://dp1-feed-operator-api-prod.autonomy-system.workers.dev/api/v1",
"apiKey": "YOUR_FEED_SERVER_API_KEY_OPTIONAL"
},
{
"baseUrl": "http://localhost:8787",
"apiKey": "YOUR_FEED_SERVER_API_KEY_OPTIONAL"
}
],
"playlist": {
"privateKey": "YOUR_ED25519_PRIVATE_KEY_BASE64_OR_HEX"
},
"ff1Devices": {
"devices": [
{
"name": "DISPLAY_NAME_FOR_YOUR_FF1_DEVICE",
"host": "http://YOUR_FF1_IP_ADDRESS:1111",
"apiKey": "YOUR_FF1_DEVICE_API_KEY_FROM_DEVICE_SETTINGS",
"topicID": "YOUR_FF1_DEVICE_TOPIC_ID_FROM_DEVICE_SETTINGS"
}
]
}
}