-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersistence.template.json
More file actions
44 lines (41 loc) · 1.2 KB
/
Copy pathpersistence.template.json
File metadata and controls
44 lines (41 loc) · 1.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
{
"UiMode": "Tui",
"ProposalApproval": "Self",
"MaxActionIterations": 5,
"DebugMode": false,
"_SeedsDirectory_comment": "Optional. Folder of per-database identity seed files; {dbName}.json seeds a brand-new {dbName}.db with authored identity fragments. Blank (default) = a 'seeds' folder beside the database directory.",
"SeedsDirectory": "",
"SelectedLocalPeer": "Local Peer",
"LocalPeers": [
{ "Name": "Local Peer", "Description": "the person at the keyboard" }
],
"SelectedModel": "cloud",
"Models": [
{
"Name": "cloud",
"Provider": "OpenAI",
"Model": "gpt-5.5",
"DatabasePath": "cloud.db",
"ApiKey": "YOUR_API_KEY_HERE",
"ApiBaseUrl": null,
"MaxInputTokens": 8000,
"MaxOutputTokens": 32000,
"ReasoningEffort": "high",
"Streaming": true,
"RequestTimeoutSeconds": 600
},
{
"Name": "local",
"Provider": "OpenAiChat",
"Model": "local",
"DatabasePath": "local.db",
"ApiKey": "",
"ApiBaseUrl": "http://127.0.0.1:8080/v1",
"MaxInputTokens": 28000,
"MaxOutputTokens": 4096,
"ReasoningEffort": "high",
"Streaming": false,
"RequestTimeoutSeconds": 600
}
]
}