forked from simplescaling/s1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
39 lines (39 loc) · 1.02 KB
/
config.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
{
"model_choices": {
"base": "llama3.1:8b",
"huatuo": "huatuo:8b",
"specialty_labeler": "gemini-2.0-flash",
"base_judge": "gemini-2.0-flash"
},
"models": {
"llama3.1:8b": {
"hf_path": "meta-llama/Llama-3.1-8B-Instruct",
"max_length": 128000
},
"huatuo:8b": {
"hf_path": "FreedomIntelligence/HuatuoGPT-o1-8B",
"max_length": 128000
},
"gpt4o-mini": {
"max_length": 128000,
"pricing": {
"input": 0.15,
"output": 0.60
}
},
"gemini-2.0-flash": {
"max_length": 128000,
"base_url": "https://generativelanguage.googleapis.com/v1beta/openai/",
"pricing": {
"input": 0.10,
"output": 0.40,
"rpm": 2000
}
}
},
"curation": {
"llama_batch_size": 1024,
"gemini_batch_size": 512,
"initial_sample": 0
}
}