mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-23 00:53:33 +00:00
Fix: Claude Console 账户的限流开关
This commit is contained in:
@@ -1443,8 +1443,7 @@ const form = ref({
|
||||
return ''
|
||||
})(),
|
||||
userAgent: props.account?.userAgent || '',
|
||||
enableRateLimit:
|
||||
props.account?.rateLimitDuration && props.account?.rateLimitDuration > 0 ? true : false,
|
||||
enableRateLimit: props.account ? (props.account.rateLimitDuration > 0) : true,
|
||||
rateLimitDuration: props.account?.rateLimitDuration || 60,
|
||||
// Bedrock 特定字段
|
||||
accessKeyId: props.account?.accessKeyId || '',
|
||||
|
||||
Reference in New Issue
Block a user