forked from UNICKCHENG/openai-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
41 lines (40 loc) · 1.58 KB
/
next.config.js
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
const prefix = process.env.API_BASE || 'https://api.openai.com';
const claude_prefix = process.env.CLAUDE_BASE || 'https://claude.ai/api';
module.exports = {
env: {
API_BASE: prefix,
CLAUDE_BASE: claude_prefix,
// 限流,每秒最多请求次数,具体请参考 Upstash 文档
UPSTASH_RATE_LIMIT: process.env.UPSTASH_RATE_LIMIT || 30,
// Claude 默认会话名称
CLAUDE_DEFAULT_CONVERSATION_NAME: process.env.CLAUDE_DEFAULT_CONVERSATION_NAME ?? 'OPENAI-PROXY',
// 是否自动删除会话记录,如果开启,将会自动删除过时的且以 CLAUDE_DEFAULT_CONVERSATION_NAME 开头的 conversation
CLAUDE_AUTO_DELETE_CONVERSATION: process.env.CLAUDE_AUTO_DELETE_CONVERSATION ?? 'true',
// 自定义跨域请求, 默认允许跨域
ACCESS_CONTROL_ALLOW_ORIGIN: process.env.ACCESS_CONTROL_ALLOW_ORIGIN ?? '*',
},
async rewrites() {
return [
{
source: '/claude/:slug*',
destination: '/api/claude/:slug*',
},
{
source: '/google/bard',
destination: `/api/google/bard`,
},
{
source: '/ai-topia/:slug*',
destination: 'https://open.ai-topia.com/:slug*',
},
{
source: '/openai/billing/credit_grants',
destination: '/api/openai/billing/credit_grants',
},
{
source: '/openai/:path*',
destination: `${prefix}/:path*`,
},
]
},
}