• 如何突破GPT4访问次数限制?
  • 发布于 2个月前
  • 1534 热度
    0 评论
  • 暮涵
  • 0 粉丝 16 篇博客
  •   
我们知道Plus用户使用GPT4是有限制的,就是每3小时内最多25次提问,一旦超出这个数量就只能使用默认的GPT-3模型或者等3小时过后重新使用GPT4,有没有办法突破这种限制呢?答案是肯定的!

因为在iOS端ChatGPT的GPT4是不受次数限制的,所以我们可以通过插件配合脚本在浏览器里面也能模拟APP环境,最终达到无限制使用GPT4的能力。

操作流程
1、安装Tampermonkey(油猴)插件
首先安装Tampermonkey浏览器扩展插件,地址:https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo

2.插件安装成功后,再安装ChatGPT开启不限次数的GPT4-Mobile 脚本,下载链接:https://greasyfork.org/en/scripts/467317-chatgpt开启不限次数的gpt4-mobile 。打开链接点“安装此脚本”按钮。

这个插件的源码如下:

// ==UserScript==
// @name         ChatGPT开启不限次数的GPT4-Mobile
// @namespace    https://chat.openai.com/
// @description  取自iOS客户端的GPT4模型, 和GPT4一样仅限Plus会员使用
// @version      0.5
// @match        https://chat.openai.com/*
// @author       braumye
// @grant        unsafeWindow
// @license      GPL-2.0-only
// ==/UserScript==

(function () {
    const originFetch = fetch;
    window.unsafeWindow.fetch = (url, options) => {
        return originFetch(url, options).then(async (response) => {
            if (url.indexOf('/backend-api/models') === -1) {
                return response;
            }
            const responseClone = response.clone();
            let res = await responseClone.json();
            res.models = res.models.map(m => {
                if (m.slug === 'gpt-4-mobile') {
                    m.tags = m.tags.filter(t => {
                        return t !== 'mobile';
                    });
                    res.categories.push({
                        browsing_model: null,
                        category: "gpt_4",
                        code_interpreter_model: null,
                        default_model: "gpt-4-mobile",
                        human_category_name: "GPT-4-Mobile",
                        plugins_model: null,
                        subscription_level: "plus",
                    });
                }
                return m;
            });

            return new Response(JSON.stringify(res), response);
        });
    };
})();

3.现在回到ChatGPT网站,你会发现除了正常的GPT3.5和GPT4之外,主页还多了一种模型:GPT4-Mobile

4.最后来检测一下到底是不是真正的GPT4。
我们不能直接问它是哪个模型,不管是GPT4还是GPT3,它都会回答是GPT3,因为这几个模型训练的数据截止是2021年。所以我们可以换其它问题来问,比如有个经典的问题:鲁迅为什么暴打周树人
GPT3.5 胡编乱造一个答案给你

GPT4-Mobile效果:

需要注意的是,该模型仅针对Plus用户开放,普通账号号即使安装了该插件也不会有该模型。
用户评论