标题: 一位新人的报道
作者: #undefined
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1707181
时间: 2026-03-08 12:14:47
摘要:
作者: #undefined
板块: #搞七捻三
编号:
1707181帖子: https://linux.do/t/topic/1707181
时间: 2026-03-08 12:14:47
摘要:
没有注册浏览L站一个月,今天终于正式加入L站
标题: 闲鱼windsserf 无限用opus fast 是真的吗
作者: #jik
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707198
时间: 2026-03-08 12:17:13
摘要:
作者: #jik
板块: #开发调优
编号:
1707198帖子: https://linux.do/t/topic/1707198
时间: 2026-03-08 12:17:13
摘要:
佬友们 这种是什么的原理
标题: 】再次跳票!ChatGPT成人模式上线计划再度延期
作者: #𝓵𝓮𝔃𝓲𝓼𝓱𝓮𝓷
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1707213
时间: 2026-03-08 12:20:23
摘要:
作者: #𝓵𝓮𝔃𝓲𝓼𝓱𝓮𝓷
板块: #前沿快讯
编号:
1707213帖子: https://linux.do/t/topic/1707213
时间: 2026-03-08 12:20:23
摘要:
TechCrunch – 7 Mar 26
OpenAI delays ChatGPT’s ‘adult mode’ again | TechCrunch
The feature, which will give verified adult users access to erotica and other adult content, had already been delayed from December.
Est. reading time: 2 minutes
标题: 想问一下,ChatGPT $200 Pro 订阅用户的 Codex 使用额度大概是多少?有没有具体的限制?
作者: #CatFly
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707222
时间: 2026-03-08 12:23:26
摘要:
作者: #CatFly
板块: #开发调优
编号:
1707222帖子: https://linux.do/t/topic/1707222
时间: 2026-03-08 12:23:26
摘要:
最近 codex 太好用了?想升级到 pro 了,各位佬友知道么?
标题: 友情提醒一手讯飞mass明天取消免费
作者: #vmjcv666
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1707235
时间: 2026-03-08 12:26:36
摘要:
作者: #vmjcv666
板块: #福利羊毛
编号:
1707235帖子: https://linux.do/t/topic/1707235
时间: 2026-03-08 12:26:36
摘要:
开了多推理节点的,快去关了,小心被反向薅羊毛
标题: openclaw 如何开启多个 agent,每个 agent 是一种角色
作者: #histore
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1707236
时间: 2026-03-08 12:26:44
摘要:
作者: #histore
板块: #搞七捻三
编号:
1707236帖子: https://linux.do/t/topic/1707236
时间: 2026-03-08 12:26:44
摘要:
openclaw 如何开启多个 agent,每个 agent 是一种角色
标题: Claude Code中使用cpa逆向5.4,如何设置1M上下文?
作者: #唐雪
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707241
时间: 2026-03-08 12:27:40
摘要:
作者: #唐雪
板块: #开发调优
编号:
1707241帖子: https://linux.do/t/topic/1707241
时间: 2026-03-08 12:27:40
摘要:
有没有佬友知道在Claude Code中,使用cpa逆gpt-5.4,怎么设置1M上下文啊
标题: 测评:自部署 Qwen3.5-0.8B 模型翻译能力详细评测
作者: #Mozi
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707244
时间: 2026-03-08 12:28:25
摘要:
作者: #Mozi
板块: #开发调优
编号:
1707244帖子: https://linux.do/t/topic/1707244
时间: 2026-03-08 12:28:25
摘要:
自部署 Qwen3.5-0.8B 模型翻译能力测评报告
测评概述
项目
内容
测评模型
Qwen3.5-0.8B-Abliterated (GGUF Q4_0 量化)
模型大小
501.45 MB
部署方式
Llama.cpp / LM Studio (OpenAI 兼容 API)
测试时间
2026-03-08
测试硬件
Mac mini (ARM64)
一、安装部署步骤
1.1 环境准备
# 安装 Homebrew (如未安装)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# 安装 llama.cpp
brew install llama.cpp
1.2 下载模型
从 HuggingFace 或 ModelScope 下载 GGUF 格式模型:
# 示例:下载 Qwen3.5-0.8B-Abliterated Q4_0 量化版
huggingface-cli download SicariusSicariusStuff/Qwen3.5-0.8B-Abliterated-GGUF \
--include "qwen3.5-0.8b_abliterated_arm-Q4_0.gguf" \
--local-dir ~/models
1.3 启动推理服务器
# 使用 llama.cpp 的 server 模式
./server -m ~/models/qwen3.5-0.8b_abliterated_arm-Q4_0.gguf \
--host 127.0.0.1 \
--port 1234 \
-c 2048 \
-t 8 \
--batch-size 512
或使用 LM Studio(推荐新手):
下载并安装 LM Studio
在 Models 标签页搜索并下载模型
点击 “Start Server” 启动本地 A
标题: 求助:GPT Team 模型降级怎么解决
作者: #xiaofang
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707248
时间: 2026-03-08 12:29:48
摘要:
作者: #xiaofang
板块: #开发调优
编号:
1707248帖子: https://linux.do/t/topic/1707248
时间: 2026-03-08 12:29:48
摘要:
佬们,最近用域名邮箱手搓了一个 GPT Team,发现用 GPT 5.4 Pro/Thinking 询问模型类型,都回复是 5.1 Mini
但是在其他佬友的车上不会出现这种情况
请问这是啥情况?要怎么解决呢?
标题: 新人求推荐小鸡
作者: #JYPYYy
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707249
时间: 2026-03-08 12:29:56
摘要:
作者: #JYPYYy
板块: #开发调优
编号:
1707249帖子: https://linux.do/t/topic/1707249
时间: 2026-03-08 12:29:56
摘要:
想搞一台可以搭节点,cpa反代,部署openclaw,自己搞着玩,求求佬友们推荐合适的。美国ip?月付款100以内。越便宜越好,其他怕踩坑
标题: 现在Gemini的API有什么渠道吗?
作者: #lszzz
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707256
时间: 2026-03-08 12:31:37
摘要:
作者: #lszzz
板块: #开发调优
编号:
1707256帖子: https://linux.do/t/topic/1707256
时间: 2026-03-08 12:31:37
摘要:
Claude和GPT我都有能正常使用的稳定渠道了,但Gemini还没有。我觉得中转站的Gemini都不太好,远远比不上Ai Studio页面,感觉那里的模型最好、最稳定,但是反代感觉又比较麻烦,反重力反代也会被封号,所以想问下大家还有没有别的渠道。
标题: 手搓的GPT team车位3个
作者: #tingelam
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1707259
时间: 2026-03-08 12:32:04
摘要:
作者: #tingelam
板块: #福利羊毛
编号:
1707259帖子: https://linux.do/t/topic/1707259
时间: 2026-03-08 12:32:04
摘要:
抽奖主题:手搓的GPT team车位3个
奖品详情:
gpt team位置 * 3
活动时间:
开始时间:
今天 12:30
截止时间:
明天 20:00
参与方式:
在本帖下回复任意内容
抽奖规则:
每位用户仅允许参与一次。
使用官方抽奖工具随机抽取中奖者。
注意事项:
本活动将在活动截止时间后半小时关闭回帖,以确保公正性。
中奖者将在活动结束后24小时内在本帖公布,并通过私信通知领奖方式。
所有规则及抽奖结果由活动发起人和论坛管理团队最终解释。
期待您的积极参与,祝您好运!如有任何疑问,欢迎随时联系抽奖发起人。
标题: 疑似free号的gpt-5.4 xhigh被ban?
作者: #BenjaminAaron
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707265
时间: 2026-03-08 12:32:27
摘要:
作者: #BenjaminAaron
板块: #开发调优
编号:
1707265帖子: https://linux.do/t/topic/1707265
时间: 2026-03-08 12:32:27
摘要:
后台大面积报这个错误
标题: 哇!留给人类的时间真的不多了,太震撼了
作者: #rainbowmorel
板块: #国产替代
编号:
帖子: https://linux.do/t/topic/1707270
时间: 2026-03-08 12:32:54
摘要:
作者: #rainbowmorel
板块: #国产替代
编号:
1707270帖子: https://linux.do/t/topic/1707270
时间: 2026-03-08 12:32:54
摘要:
标题: 除了 z.ai 还有哪家网页agent做的比较好吗 求推荐
作者: #rcdfrd
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1707274
时间: 2026-03-08 12:33:34
摘要:
作者: #rcdfrd
板块: #开发调优
编号:
1707274帖子: https://linux.do/t/topic/1707274
时间: 2026-03-08 12:33:34
摘要:
除了 z.ai 还有哪家网页agent做的比较好吗 求推荐
价格希望不要太贵