-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathvercel.json
35 lines (35 loc) · 882 Bytes
/
vercel.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
{
"routes": [
{
"src": "/gemini/v1/(.*)",
"dest": "https://generativelanguage.googleapis.com/v1/$1"
},
{
"src": "/gemini/v1beta/(.*)",
"dest": "https://generativelanguage.googleapis.com/v1beta/$1"
},
{
"src": "/openai/v1/(.*)",
"dest": "https://api.openai.com/v1/$1"
},
{
"src": "/groq/openai/v1/(.*)",
"dest": "https://api.groq.com/openai/v1/$1"
},
{
"src": "/claude/v1/(.*)",
"dest": "https://api.anthropic.com/v1/$1"
},
{
"src": "/cohere/v1/(.*)",
"dest": "https://api.cohere.ai/v1/$1"
},
{
"src": "/xai/v1/(.*)",
"dest": "https://api.x.ai/v1/$1"
}
],
"regions": [
"hnd1"
]
}