fix: codex转发store默认false

This commit is contained in:
shaw
2025-09-03 14:32:11 +08:00
parent b158a90b72
commit aeace0c5f0

View File

@@ -153,7 +153,7 @@ router.post('/responses', authenticateApiKey, async (req, res) => {
headers['host'] = 'chatgpt.com'
headers['accept'] = isStream ? 'text/event-stream' : 'application/json'
headers['content-type'] = 'application/json'
req.body['store'] = true
req.body['store'] = false
// 创建代理 agent
const proxyAgent = createProxyAgent(proxy)