-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
60 lines (60 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"models":[
{
"provider": "OpenAI",
"model": "gpt-4o",
"model_name": "GPT-4o",
"endpoint": "https://api.openai.com/v1/chat/completions",
"api_key_env_var": "OPEN_AI_API_KEY"
},
{
"provider": "OpenAI",
"model": "gpt-4o-mini",
"model_name": "GPT-4o-mini",
"endpoint": "https://api.openai.com/v1/chat/completions",
"api_key_env_var": "OPEN_AI_API_KEY"
},
{
"provider": "DeepSeek",
"model": "deepseek-chat",
"model_name": "DeepSeek-Chat",
"endpoint": "https://api.deepseek.com/v1/chat/completions",
"api_key_env_var": "DEEP_SEEK_API_KEY"
},
{
"provider": "FireworksAI",
"model": "accounts/fireworks/models/llama-v3p1-405b-instruct",
"model_name": "Llama 3.1 405b",
"endpoint": "https://api.fireworks.ai/inference/v1/chat/completions",
"api_key_env_var": "FIREWORKS_API_KEY"
},
{
"provider": "Anthropic",
"model": "claude-3-5-sonnet-20240620",
"model_name": "Claude 3.5 Sonnet",
"endpoint": "https://api.anthropic.com/v1/messages",
"api_key_env_var": "CLAUDE_API_KEY"
},
{
"provider": "Cohere",
"model": "command-r",
"model_name": "Cohere Command R",
"endpoint": "https://api.cohere.com/v1/chat",
"api_key_env_var": "COHERE_API_KEY"
},
{
"provider": "Cohere",
"model": "command-r-plus",
"model_name": "Cohere Command R+",
"endpoint": "https://api.cohere.com/v1/chat",
"api_key_env_var": "COHERE_API_KEY"
}
],
"global_parameters":{
"temperature": 1,
"max_tokens": 200,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0
}
}