-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
50 lines (50 loc) · 1.73 KB
/
config.example.json
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
{
"Settings": {
"llm": {
"temperature": 0.2,
"model": "gpt-4o",
"api_key": "YOUR_API_KEY_HERE",
"api_base": "https://api.example.com/v1"
},
"others": {
"cohere_api_key": "YOUR_COHERE_API_KEY_HERE",
"openai_api_key": "YOUR_OPENAI_API_KEY_HERE",
"enable_openai": true,
"openai_api_base_url": "https://api.example.com/v1",
"enable_mps": false,
"whisper_cpp_path": "/path/to/whisper.cpp",
"edge_tts_enable": true,
"edge_tts_voice": "en-US-JennyNeural",
"edge_tts_voice_cn": "zh-CN-XiaoxiaoNeural",
"car_api_url": "http://YOUR_CAR_API_URL_HERE",
"car_camera_stream_enable": true,
"car_camera_stream_url": "http://YOUR_CAR_CAMERA_STREAM_URL_HERE",
"blip_model": "Salesforce/blip-image-captioning-large",
"blip_model2": "Salesforce/blip-image-captioning-base"
}
},
"SettingsMy": {
"llm": {
"temperature": 0.2,
"model": "gpt-4o",
"api_key": "YOUR_API_KEY_HERE",
"api_base": "https://api.example.com/v1"
},
"others": {
"cohere_api_key": "YOUR_COHERE_API_KEY_HERE",
"openai_api_key": "YOUR_OPENAI_API_KEY_HERE",
"enable_openai": true,
"openai_api_base_url": "https://api.example.com/v1",
"enable_mps": false,
"whisper_cpp_path": "/path/to/whisper.cpp",
"edge_tts_enable": true,
"edge_tts_voice": "en-US-JennyNeural",
"edge_tts_voice_cn": "zh-CN-XiaoxiaoNeural",
"car_api_url": "http://YOUR_CAR_API_URL_HERE",
"car_camera_stream_enable": true,
"car_camera_stream_url": "http://YOUR_CAR_CAMERA_STREAM_URL_HERE",
"blip_model": "Salesforce/blip-image-captioning-large",
"blip_model2": "Salesforce/blip-image-captioning-base"
}
}
}