逆天O畜,网页版全部档位降智

Neptune 2026-09-25 21:10 1

之前都是只降智pro,Thinking heavy是不降智的(也就是现在的xhigh),结果我发现xhigh也秒回复,一测试果然直接路由到mini了^-^

想当于网页版废了属于是

最新回复 (16)
  • ProMing 09-25 21:11
    1楼

    换个IP试试,网页版也可能仅仅是IP问题

  • qyy 09-25 21:11
    2楼

    我的网页版gpt,很慢,而且是时不时就不回复了,我要重新刷新页面然后重新发送消息才行,像是限速的样子

  • Neptune 楼主 09-25 21:12
    3楼

    现在不是了,只要降智怎么换都不给解开,如果换到家宽还会直接传染给家宽 ^-^

  • xmt 09-25 21:12
    4楼

    这应该是ip的问题,换个家宽试试

  • 某Li 09-25 21:14
    5楼

    已释怀,o这样搞还不如把网页端额度算给codex好了

  • Neptune 楼主 09-25 21:14
    6楼





    O\现在不是换家宽就能解了,已经不是一般畜生了^-^

  • 雷雷雷雷雷 09-25 21:15
    7楼

    现在GPT也进入需要IP质量的时代了,快进到以后自研一套A/式风控,订阅A/的一个不小心要封号,订阅O/的一个不小心要降智,大家都有光明的未来 ^-^

  • BigGoose 09-25 21:15
    8楼

    有佬友反馈能用,有的反馈用了反而降级,请谨慎使用!
    通过Codex对chrome里的gpt网站进行分析,得到以下结论
    对,没错,就是用Codex分析
    [b59c2618d6adc6f3bd78d5eaddc8c8ea]
    1/4|问题
    ChatGPT会读取:

    Accept-Language
    navigator.language
    Intl 时区
    系统时间偏移
    页面语言与区域路径
    Cook…


    可以试试这个插件,我用这个之后降智解决了 ^-^

  • Neptune 楼主 09-25 21:24
    9楼

    O畜这降智画的鹈鹕,不亚于23年史密斯吃意面,泰森吃石头 ^-^


    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
    <meta charset="UTF-8">
    <title>鹈鹕骑自行车 SVG 2D 动画</title>
    <style>
    html,body{
    margin:0;
    height:100%;
    background:#dff5ff;
    overflow:hidden;
    }

    .scene{
    width:100%;
    height:100%;
    }

    svg{
    width:100%;
    height:100%;
    }

    /* 自行车整体移动 */
    .bike-group{
    animation:ride 6s linear infinite;
    }

    @keyframes ride{
    0%{transform:translateX(-300px)}
    50%{transform:translateX(400px)}
    100%{transform:translateX(-300px)}
    }

    /* 车轮旋转 */
    .wheel{
    transform-origin:center;
    animation:spin 1s linear infinite;
    }

    @keyframes spin{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
    }

    /* 脚蹬 */
    .pedal{
    transform-origin:150px 300px;
    animation:pedal 1s linear infinite;
    }

    @keyframes pedal{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
    }

    /* 翅膀摆动 */
    .wing{
    transform-origin:220px 150px;
    animation:flap .8s ease-in-out infinite alternate;
    }

    @keyframes flap{
    from{transform:rotate(-10deg)}
    to{transform:rotate(15deg)}
    }

    /* 鸟头轻微晃动 */
    .head{
    animation:bob .8s ease-in-out infinite alternate;
    }

    @keyframes bob{
    from{transform:translateY(0)}
    to{transform:translateY(-5px)}
    }

    /* 地面 */
    .road{
    animation:roadMove 3s linear infinite;
    }

    @keyframes roadMove{
    from{transform:translateX(0)}
    to{transform:translateX(-100px)}
    }
    </style>
    </head>

    <body>

    <div class="scene">

    <svg viewBox="0 0 1000 600">

    <!-- 天空 -->
    <rect width="1000" height="600" fill="#dff5ff"/>

    <!-- 云 -->
    <g fill="white" opacity=".8">
    <circle cx="150" cy="100" r="40"/>
    <circle cx="200" cy="90" r="55"/>
    <circle cx="260" cy="110" r="35"/>

    <circle cx="700" cy="120" r="45"/>
    <circle cx="760" cy="100" r="60"/>
    <circle cx="830" cy="125" r="40"/>
    </g>

    <!-- 地面 -->
    <rect y="430" width="1000" height="170" fill="#91d46b"/>

    <g class="road">
    <rect y="500" width="1200" height="20" fill="#555"/>
    <g stroke="white" stroke-width="5">
    <line x1="0" y1="510" x2="80" y2="510"/>
    <line x1="150" y1="510" x2="230" y2="510"/>
    <line x1="300" y1="510" x2="380" y2="510"/>
    <line x1="450" y1="510" x2="530" y2="510"/>
    <line x1="600" y1="510" x2="680" y2="510"/>
    <line x1="750" y1="510" x2="830" y2="510"/>
    </g>
    </g>

    <!-- 动画主体 -->
    <g class="bike-group">

    <!-- 自行车 -->
    <g stroke="#333" stroke-width="8" fill="none">

    <g class="wheel">
    <circle cx="120" cy="350" r="70"/>
    <circle cx="120" cy="350" r="8" fill="#333"/>
    <line x1="120" y1="280" x2="120" y2="420"/>
    <line x1="50" y1="350" x2="190" y2="350"/>
    </g>

    <g class="wheel">
    <circle cx="360" cy="350" r="70"/>
    <circle cx="360" cy="350" r="8" fill="#333"/>
    <line x1="360" y1="280" x2="360" y2="420"/>
    <line x1="290" y1="350" x2="430" y2="350"/>
    </g>

    <path d="
    M120 350
    L200 240
    L360 350
    L250 350
    L200 240
    "/>

    <line x1="200" y1="240" x2="170" y2="180"/>
    <line x1="170" y1="180" x2="230" y2="180"/>

    </g>

    <!-- 踏板 -->
    <g class="pedal">
    <circle cx="150" cy="300" r="15" fill="#444"/>
    <line x1="150" y1="300" x2="185" y2="280" stroke="#444" stroke-width="8"/>
    </g>

    <!-- 鹈鹕身体 -->
    <ellipse cx="230" cy="180" rx="75" ry="95" fill="#f5f5f5"/>

    <!-- 翅膀 -->
    <g class="wing">
    <ellipse cx="220" cy="170" rx="70" ry="35" fill="#d5d5d5"/>
    </g>

    <!-- 鹈鹕头 -->
    <g class="head">
    <circle cx="220" cy="80" r="55" fill="#fff"/>

    <!-- 嘴 -->
    <path d="
    M260 90
    Q390 120 270 160
    Q250 130 260 90
    "
    fill="#f3a23a"/>

    <!-- 眼睛 -->
    <circle cx="235" cy="65" r="8" fill="black"/>

    <!-- 帽子 -->
    <path d="
    M180 35
    Q220 0 260 35
    "
    stroke="#3388cc"
    stroke-width="10"
    fill="none"/>
    </g>

    <!-- 鹈鹕腿 -->
    <line x1="200" y1="250" x2="150" y2="300" stroke="#e89b35" stroke-width="10"/>
    <line x1="250" y1="250" x2="290" y2="300" stroke="#e89b35" stroke-width="10"/>

    <!-- 车篮 -->
    <path d="
    M270 230
    Q320 220 350 250
    L290 270Z"
    fill="#8b5a2b"/>

    </g>

    </g>

    <!-- 标题 -->
    <text x="500" y="70"
    text-anchor="middle"
    font-size="38"
    font-family="sans-serif"
    fill="#333">
    Pelican Cycling Adventure 🐦🚲
    </text>

    </svg>

    </div>

    </body>
    </html>
  • 二哈 09-25 21:26
    10楼

    秒回才是降智。它应该使用的是 5.6 的量化版本在 web 端。Web 端性能会低很多。

  • Neptune 楼主 09-25 21:36
    11楼



    神juice值只有18

  • 王 09-25 21:39
    12楼

    各位佬有啥办法,才能让不智降呢,太难了

  • 夜与星河 09-25 21:40
    13楼

    不降智会画成什么样,这感觉和mimo一个水平了

  • BigGoose 09-25 21:41
    14楼

    试试我发的那个链接的网页插件 ^-^

  • 悲伤的大鼻嘎 09-25 21:42
    15楼

    试试换个浏览器看还降不降智,我朋友也遇到了,换个浏览器就不降智了

  • 080 09-25 21:54
    16楼

    佬,这是啥情况

* 帖子来源Linux.do
返回