-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
34 lines (34 loc) · 846 Bytes
/
Copy pathconfig.example.json
File metadata and controls
34 lines (34 loc) · 846 Bytes
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
{
"apiBaseUrl": "https://api.example.com/v1",
"apiKey": "put-your-api-key-here",
"model": "gpt-4o-mini",
"targetLanguage": "Simplified Chinese",
"watchDirs": [
"%USERPROFILE%\\Videos",
"%USERPROFILE%\\Downloads",
"%USERPROFILE%\\Desktop"
],
"recursive": true,
"scanIntervalSeconds": 20,
"batchSize": 20,
"maxParallelRequests": 1,
"modelPool": [
{
"model": "gpt-4o-mini"
},
{
"apiBaseUrl": "https://another-openai-compatible.example/v1",
"apiKey": "optional-provider-specific-api-key",
"model": "another-fast-model"
}
],
"temperature": 0.2,
"maxTokens": 2000,
"requestTimeoutSeconds": 120,
"retryCount": 2,
"translateExistingOnStart": false,
"writeTranslated": true,
"writeBilingual": true,
"translatedSuffix": "zh-CN",
"bilingualSuffix": "bilingual"
}