-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
128 lines (128 loc) · 3.19 KB
/
Copy pathconfig.json
File metadata and controls
128 lines (128 loc) · 3.19 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"services": {
"ollama1": {
"name": "PocketDoc",
"type": "ollama",
"model": "PocketDoc_Dans-PersonalityEngine:latest",
"url": "http://localhost:11434/api/generate",
"scope": "",
"auth_url": "",
"temperature": 1.0,
"top_p": 0.95,
"min_p": 0.05,
"num_predict": 300,
"stop": [
"<|im_end|>",
"User:"
],
"max_tokens": 9000,
"repeat_penalty": 1.2,
"frequency_penalty": 0.5,
"presence_penalty": 0.4,
"chatml": true,
"timeout": 600
},
"ollama2": {
"name": "Saiga-Nemo",
"type": "ollama",
"model": "saiga_nemo_12b.Q8_0:latest",
"url": "http://localhost:11434/api/generate",
"scope": "",
"auth_url": "",
"temperature": 1.0,
"top_p": 0.95,
"min_p": 0.05,
"num_predict": 300,
"stop": [],
"max_tokens": 32000,
"repeat_penalty": 1.2,
"frequency_penalty": 0.5,
"presence_penalty": 0.4,
"chatml": false,
"timeout": 240
},
"ollama3": {
"name": "EVA-Qwen",
"type": "ollama",
"model": "EVA-Qwen2.5-72B:latest",
"url": "http://localhost:11434/api/generate",
"scope": "",
"auth_url": "",
"temperature": 0.8,
"top_p": 1.0,
"min_p": 0.05,
"num_predict": 300,
"stop": [
"<|im_end|>",
"User:"
],
"max_tokens": 16000,
"repeat_penalty": 1.03,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"chatml": true,
"timeout": 1000
},
"ollama4": {
"name": "Midnight-Rose",
"type": "ollama",
"model": "Midnight-Rose-70B-v2.0.3.Q5_K_S:latest",
"url": "http://localhost:11434/api/generate",
"scope": "",
"auth_url": "",
"temperature": 1.0,
"top_p": 1.0,
"min_p": 0.1,
"num_predict": 300,
"stop": [],
"max_tokens": 6144,
"repeat_penalty": 1.15,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"chatml": false,
"timeout": 1000
},
"gigachat": {
"name": "GigaChat",
"type": "gigachat",
"model": "GigaChat-2",
"url": "https://gigachat.devices.sberbank.ru/api/v1/chat/completions",
"scope": "GIGACHAT_API_PERS",
"auth_url": "https://ngw.devices.sberbank.ru:9443/api/v2/oauth",
"temperature": 0.9,
"top_p": 0.95,
"min_p": 0.0,
"num_predict": 300,
"stop": [],
"max_tokens": 120000,
"repeat_penalty": 1.0,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"chatml": false,
"timeout": 100
},
"openai": {
"name": "OpenAI",
"type": "openai",
"model": "gpt-4o-mini",
"url": "https://api.openai.com/v1/chat/completions",
"scope": "",
"auth_url": "",
"temperature": 0.9,
"top_p": 0.95,
"min_p": 0.0,
"num_predict": 300,
"stop": [],
"max_tokens": 120000,
"repeat_penalty": 1.0,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"chatml": false,
"timeout": 100
}
},
"credentials_path": "secrets/credentials.json",
"debug_mode": true,
"default_service": "ollama1",
"translation_service": "google"
}