Skip to content

Commit

Permalink
Update free_worker.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jyx04 authored Jun 24, 2024
1 parent efe827d commit 0e52210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion free_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ addEventListener('fetch', event => {
access_token: accessToken, // 使用从全局变量中获取的 accessToken
unique_name: passwd, //前缀+无后缀用户名
site_limit: '', // 限制的网站
expires_in: isVIP ? '0' : '86400', // token有效期(单位为秒),填 0 则永久有效
expires_in: isVIP ? '0' : '0', // token有效期(单位为秒),填 0 则永久有效
gpt35_limit: '-1', // gpt3.5 对话限制
gpt4_limit: isFreeUsers ? '-1' : '-1', // gpt4 对话限制,-1为不限制
show_conversations: isAdmin ? 'true' : 'false', // 是否显示所有人的会话
Expand Down

0 comments on commit 0e52210

Please sign in to comment.