-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathvercel.json
54 lines (54 loc) · 1.26 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"routes": [
{
"src": "/",
"dest": "/api/index.ts",
"methods": ["GET"]
},
{
"src": "/api/webhook",
"dest": "/api/webhook/index.ts",
"methods": ["POST"]
},
{
"src": "/api/webhook/(?<conversation_uuid>[A-Za-z0-9-_]+)",
"dest": "/api/webhook/index.ts?conversation_uuid=$1",
"methods": ["POST"]
},
{
"src": "/api/functions/basic",
"dest": "/api/functions/basic.ts",
"methods": ["POST"]
},
{
"src": "/api/functions/rag",
"dest": "/api/functions/rag.ts",
"methods": ["POST"]
},
{
"src": "/api/functions/inbound",
"dest": "/api/functions/inbound.ts",
"methods": ["POST"]
},
{
"src": "/api/functions/outbound",
"dest": "/api/functions/outbound.ts",
"methods": ["POST"]
},
{
"src": "/api/custom-llm/basic/chat/completions",
"dest": "/api/custom-llm/basic.ts",
"methods": ["POST"]
},
{
"src": "/api/custom-llm/openai-sse/chat/completions",
"dest": "/api/custom-llm/openai-sse.ts",
"methods": ["POST"]
},
{
"src": "/api/custom-llm/openai-advanced/chat/completions",
"dest": "/api/custom-llm/openai-advanced.ts",
"methods": ["POST"]
}
]
}