-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.local
44 lines (44 loc) · 861 Bytes
/
.env.local
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
MONGODB_URL="mongodb://mongodb:27017"
HF_TOKEN=abc
MODELS=`[
{
"name": "Ollama DeepSeek (7B)",
"chatPromptTemplate": "",
"parameters": {
"temperature": 0.1,
"top_p": 0.95,
"repetition_penalty": 1.2,
"top_k": 50,
"truncate": 3072,
"max_new_tokens": 1024,
"stop": ["</s>"]
},
"endpoints": [
{
"type": "ollama",
"url" : "http://ollama-service:11434",
"ollamaName" : "deepseek-r1:7b"
}
]
},
{
"name": "Ollama DeepSeek (1.5B)",
"chatPromptTemplate": "",
"parameters": {
"temperature": 0.1,
"top_p": 0.95,
"repetition_penalty": 1.2,
"top_k": 50,
"truncate": 3072,
"max_new_tokens": 1024,
"stop": ["</s>"]
},
"endpoints": [
{
"type": "ollama",
"url" : "http://ollama-service:11434",
"ollamaName" : "deepseek-r1:1.5b"
}
]
}
]`