From aeace0c5f02e38cea7b331243fd0c3da68bfbaf9 Mon Sep 17 00:00:00 2001 From: shaw Date: Wed, 3 Sep 2025 14:32:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20codex=E8=BD=AC=E5=8F=91store=E9=BB=98?= =?UTF-8?q?=E8=AE=A4false?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/openaiRoutes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/openaiRoutes.js b/src/routes/openaiRoutes.js index b0a1178c..9efb2981 100644 --- a/src/routes/openaiRoutes.js +++ b/src/routes/openaiRoutes.js @@ -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)