-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproviders.json.example
More file actions
66 lines (66 loc) · 1.56 KB
/
Copy pathproviders.json.example
File metadata and controls
66 lines (66 loc) · 1.56 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
[
{
"openrouter":
{
"baseUrl" : "https://openrouter.ai/api/v1",
"apikey" : "APIKEY_OPENROUTER" // points to environment variable by default but you can set it here if you want to use a different key
}
},
{
"openai":
{
"baseUrl" : "https://api.openai.com/v1",
"apikey" : "APIKEY_OPENAI"
}
},
{
"deepseek":
{
"baseUrl" : "https://api.deepseek.com/v1",
"apikey" : "APIKEY_DEEPSEEK"
}
},
{
"google":
{
"baseUrl" : "https://generativelanguage.googleapis.com/v1beta/openai",
"apikey" : "APIKEY_GOOGLE"
}
},
{
"xAI":
{
"baseUrl" : "https://api.x.ai/v1",
"apikey" : "APIKEY_XAI"
}
},
{
"requesty":
{
"baseUrl" : "https://router.requesty.ai/v1",
"apikey" : "APIKEY_REQUESTY",
"multiple_models" : "true"
}
},
{
"nebius":
{
"baseUrl" : "https://api.studio.nebius.ai/v1",
"apikey" : "APIKEY_NEBIUS"
}
},
{
"together":
{
"baseUrl" : "https://api.together.xyz/v1",
"apikey" : "APIKEY_TOGETHER"
}
},
{
"klusterai":
{
"baseUrl" : "https://api.kluster.ai/v1",
"apikey" : "APIKEY_KLUSTERAI"
}
}
]