mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 13:27:08 +00:00
fix: 延长claude超时时间
This commit is contained in:
parent
77f6d2d85b
commit
c36a0f9c9c
3 changed files with 3 additions and 3 deletions
|
|
@ -622,7 +622,7 @@ export function supportGuoba () {
|
||||||
{
|
{
|
||||||
field: 'claudeAITimeout',
|
field: 'claudeAITimeout',
|
||||||
label: 'claude2超时时间',
|
label: 'claude2超时时间',
|
||||||
bottomHelpMessage: '等待响应的超时时间,单位为秒,默认为30。如果不使用反代而是使用代理可以适当调低。',
|
bottomHelpMessage: '等待响应的超时时间,单位为秒,默认为120。如果不使用反代而是使用代理可以适当调低。',
|
||||||
component: 'InputNumber'
|
component: 'InputNumber'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -151,7 +151,7 @@ export class ClaudeAIClient {
|
||||||
body: JSON.stringify(body),
|
body: JSON.stringify(body),
|
||||||
headers: this.rawHeaders,
|
headers: this.rawHeaders,
|
||||||
disableRedirect: true,
|
disableRedirect: true,
|
||||||
timeout: Config.claudeAITimeout || 30
|
timeout: Config.claudeAITimeout || 120
|
||||||
}, 'post')
|
}, 'post')
|
||||||
if (streamDataRes.status === 307) {
|
if (streamDataRes.status === 307) {
|
||||||
throw new Error('claude.ai目前不支持你所在的地区')
|
throw new Error('claude.ai目前不支持你所在的地区')
|
||||||
|
|
|
||||||
|
|
@ -148,7 +148,7 @@ const defaultConfig = {
|
||||||
claudeAIOrganizationId: '',
|
claudeAIOrganizationId: '',
|
||||||
claudeAISessionKey: '',
|
claudeAISessionKey: '',
|
||||||
claudeAIReverseProxy: '',
|
claudeAIReverseProxy: '',
|
||||||
claudeAITimeout: 30,
|
claudeAITimeout: 120,
|
||||||
claudeAIJA3: '772,4865-4866-4867-49195-49199-49196-49200-52393-52392-49171-49172-156-157-47-53,27-5-65281-13-35-0-51-18-16-43-10-45-11-17513-23,29-23-24,0',
|
claudeAIJA3: '772,4865-4866-4867-49195-49199-49196-49200-52393-52392-49171-49172-156-157-47-53,27-5-65281-13-35-0-51-18-16-43-10-45-11-17513-23,29-23-24,0',
|
||||||
claudeAIUA: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',
|
claudeAIUA: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',
|
||||||
version: 'v2.7.4'
|
version: 'v2.7.4'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue