标题: 求助!!!谁有gemini中转站
作者: #XXL
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965456
时间: 2026-04-14 17:44:20
摘要:
作者: #XXL
板块: #搞七捻三
编号:
1965456帖子: https://linux.do/t/topic/1965456
时间: 2026-04-14 17:44:20
摘要:
目前有276张图片要处理,想问问谁有gemini中转站,或者其他能扩图的模型推荐,做外贸要图,美工那边在忙别的组的哎~
标题: gemini超时
作者: #晓风残月
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965460
时间: 2026-04-14 17:44:26
摘要:
作者: #晓风残月
板块: #搞七捻三
编号:
1965460帖子: https://linux.do/t/topic/1965460
时间: 2026-04-14 17:44:26
摘要:
买的台湾静态ip,claude都一直能用,为什么打开gemini就显示超时?
标题: 我的google号出来半价了,是不是可以开ultra拼车了
作者: #CFyzy
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965461
时间: 2026-04-14 17:44:28
摘要:
作者: #CFyzy
板块: #搞七捻三
编号:
1965461帖子: https://linux.do/t/topic/1965461
时间: 2026-04-14 17:44:28
摘要:
这个ultra拼车是不是就是这么来的?
标题: 佬友们,公司要购买企业大模型API,预算每月2万人民币左右
作者: #神秘刘先生
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965465
时间: 2026-04-14 17:45:18
摘要:
作者: #神秘刘先生
板块: #搞七捻三
编号:
1965465帖子: https://linux.do/t/topic/1965465
时间: 2026-04-14 17:45:18
摘要:
高频使用人数大概在8人
比较看重编程能力和智能体调用等能力
有推荐的模型或企业渠道吗,目前在看GPT CLAUDE 等等,但感觉比较贵
标题: 这不搞笑呢吗?不是cc switch为什么没有这个apikey的写入地址啊?
作者: #dimmer
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1965473
时间: 2026-04-14 17:46:44
摘要:
作者: #dimmer
板块: #开发调优
编号:
1965473帖子: https://linux.do/t/topic/1965473
时间: 2026-04-14 17:46:44
摘要:
标题: Google Antigravity Payload 提示词
作者: #Davon
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965475
时间: 2026-04-14 17:46:55
摘要:
作者: #Davon
板块: #搞七捻三
编号:
1965475帖子: https://linux.do/t/topic/1965475
时间: 2026-04-14 17:46:55
摘要:
很长很长你们自己整理吧,刚sniff 出来一部分(工具部分)还有其他尝试着吧?技术不太行 哈哈哈,测了OpenCode, ClaudeCode 都适用,具体操作你们摸索吧?
Tool Debug Payload: [{“functionDeclarations”:[{“name”:“question”,“description”:“Use this tool when you need to ask the user questions during execution. This allows you to:\n1. Gather user preferences or requirements\n2. Clarify ambiguous instructions\n3. Get decisions on implementation choices as you work\n4. Offer choices to the user about what direction to take.\n\nUsage notes:\n- When custom is enabled (default), a "Type your own answer" option is added automatically; don’t include "Other" or catch-all options\n- Answers are returned as arrays of labels; set multiple: true to allow selecting more than one\n- If you recommend a specific option, make that the first option in the list and add "(Recommended)" at the end of the label\n”,“parameters”:{“required”:[“questions”],“type”:“object”,“properties”:{“questions”:{“description”:“Questions to ask”,“type”:“array”,“items”:{“required”:[“question”,“header”,“options”],“type”:“object”,“properties”:{“question”:{“description”:“Complete question”,“type”:“string”},“header”:{“description”:“Very short label (max 30 chars)”,“type”:“string”},“options”:{“description”:“Available choices”,“type”:“array”,“items”:{“required”:[“label”,“description”],“type”:“object”,“properties”:{“label”:{“description”:“Display text (1-5 words, concise)”,“type”:“string”},“description”:{“description”:“Explanation of choice”,“type”:“string”}}}},“multiple”:{“description”:“Allow selecting multiple choices”,“type”:“boolean”}}}}}}},{“name”:“bash”,“description”:“Executes a given bash command in a persistent shell session with optional timeout, ensuring proper handling and security measures.\n\nBe aware: OS: win32, Shell: powershell\n\nAll commands run in the current working directory by default. Use the workdir parameter if you need to run a command in a different directory. AVOID using cd <directory> && <command> patterns - use workdir instead.\n\nIMPORTANT: This tool is for terminal operations like git, npm, docker, etc. DO NOT use it for file operations (reading, writing, editing, searching, finding files) - use the specialized tools for this instead.\n\nBefore executing the command, please follow these steps:\n\n1. Directory Verification:\n - If the command will create new directories or files, first use ls to verify the parent directory exists and is the correct location\n - For example, before running "mkdir foo/bar", first use ls foo to check that "foo" exists and is the intended parent directory\n\n2. Command Execution:\n - Always quote file paths that contain spaces with double quotes (e.g., rm "path with spaces/file.txt")\n - Examples of proper quoting:\n - mkdir "/Users/name/My Documents" (correct)\n - mkdir /Users/name/My Documents (incorrect - will fail)\n - python "/path/with spaces/script.py" (correct)\n - python /path/with spaces/script.py (incorrect - will fail)\n - After ensuring proper quoting, execute the command.\n - Capture the output of the command.\n\nUsage notes:\n - The command argument is required.\n - You can specify an optional timeout in milliseconds. If not specified, commands will time out after 120000ms (2 minutes).\n - It is very helpful if you write a clear, concise description of what this command does in 5-10 words.\n - If the output exceeds 2000 lines or 51200 bytes, it will be truncated and the full output will be written to a file. You can use Read with offset/limit to read specific sections or Grep to search the full content. Do NOT use head, tail, or other truncation commands to limit output; the full output will already be captured to a file for more precise searching.\n\n - Avoid using Bash with the find, grep, cat, head, tail, sed, awk, or echo commands, unless explicitly instructed or when these commands are truly necessary for the task. Instead,
标题: 现在很多博主都在用说真话的方式骗人,AI也有同样的问题
作者: #g01d
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965497
时间: 2026-04-14 17:50:24
摘要:
作者: #g01d
板块: #搞七捻三
编号:
1965497帖子: https://linux.do/t/topic/1965497
时间: 2026-04-14 17:50:24
摘要:
最近想买点东西,在网上刷了刷测评视频,深深感到“真话只说一半就是欺骗”。营销就是说一半的真话。比如吃这个能补充身体某个很需要的元素,但ta们不会说吃这个东西所补充的量可以忽略不计。
同样的——有相同效果,但是更加便宜的产品,ta们就会告诉你吃了这个会有对身体不好的元素。但是他们不会说产生出来的所不需要的元素其量级微乎其微。无法真正对身体产生负面影响。现在的危言耸听和带节奏拉踩都是隐性的,打着科学和为你好的旗号来进行了……
标题: kimi-2.6-code-preview更新!
作者: #kev1npros
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1965502
时间: 2026-04-14 17:51:06
摘要:
作者: #kev1npros
板块: #前沿快讯
编号:
1965502帖子: https://linux.do/t/topic/1965502
时间: 2026-04-14 17:51:06
摘要:
似乎完全没有人提到? kimi-2.6-code-preview更新了,修复了问题而且模型能力感觉有提升, 在claude code里用起来挺丝滑的,而且修复了我之前吐槽的弱智bug
下面的问题一下午都没遇到
kimi开始内测,可能是新模型
前沿快讯
[image]
感觉多少有点影响任务执行了
标题: 求助佬们,要做一个智能阅卷项目,需要本地部署开源模型,请问有没有推荐的模型呢
作者: #cknights
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1965503
时间: 2026-04-14 17:51:21
摘要:
作者: #cknights
板块: #开发调优
编号:
1965503帖子: https://linux.do/t/topic/1965503
时间: 2026-04-14 17:51:21
摘要:
对学生作答进行识别和批改,服务器配置是4张3090,请问有没有推荐的模型呢
标题: tb或xy上买的claude 5x成品号,到期后佬们是怎么续费的?
作者: #Andy Wang
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965505
时间: 2026-04-14 17:51:47
摘要:
作者: #Andy Wang
板块: #搞七捻三
编号:
1965505帖子: https://linux.do/t/topic/1965505
时间: 2026-04-14 17:51:47
摘要:
如题,最近想入官方,自己的号注册要手机验证,所以想再tb或者上买个成品5x,在没有封号的前提下到期后佬们是怎样续费的?找原商家?还是礼品卡?还是直接换个新的号
标题: 有ios上电影软件吗,可以投屏电视的? 我安卓手机上有个《易火视界》,ios有吗?
作者: #justindoit
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965513
时间: 2026-04-14 17:52:19
摘要:
作者: #justindoit
板块: #搞七捻三
编号:
1965513帖子: https://linux.do/t/topic/1965513
时间: 2026-04-14 17:52:19
摘要:
这不要钱的,就看个澳门娱乐城广告,IOS上有吗
标题: 腾讯混元HunyuanWorld2.0明日开源,单图生成可编辑3D世界!
作者: #精神点儿 别丢份儿
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1965517
时间: 2026-04-14 17:52:50
摘要:
作者: #精神点儿 别丢份儿
板块: #前沿快讯
编号:
1965517帖子: https://linux.do/t/topic/1965517
时间: 2026-04-14 17:52:50
摘要:
腾讯混元世界模型研究负责人 Tengfei Wang 今日宣布,HunyuanWorld 2.0 将于 4 月 15 日发布并开源。
产品定位为「引擎就绪」(engine-ready)的世界模型:输入一张图片,输出可在游戏引擎中直接使用的完整可编辑 3D 场景。Wang 将其与 Genie3 等视频生成模型对比:后者输出视频,HunyuanWorld 输出的是可实际使用和编辑的 3D 世界。
标题: hermes agent 中转403 blocked 解决方案
作者: #ricerug
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965538
时间: 2026-04-14 17:55:29
摘要:
作者: #ricerug
板块: #搞七捻三
编号:
1965538帖子: https://linux.do/t/topic/1965538
时间: 2026-04-14 17:55:29
摘要:
openclaw 解决403的方式是加UA
hermes agent的配置文件里面不能添加UA
直接让小龙虾把User-Agent: curl/8.5.0
注入.hermes/hermes-agent/run_agent.py
手工修改的方式是把
elif "xxxapi.cc.cd" in effective_base.lower():
client_kwargs["default_headers"] = {
"User-Agent": "curl/8.5.0",
}
加入到这附近
elif "api.kimi.com" in effective_base.lower():
client_kwargs["default_headers"] = {
"User-Agent": "KimiCLI/1.30.0",
}
其中xxxapi.cc.cd这里改成你自己的中转站的地址
标题: 机场✈️大幅涨价,赛博润人快死了
作者: #lewis798
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1965540
时间: 2026-04-14 17:55:48
摘要:
作者: #lewis798
板块: #搞七捻三
编号:
1965540帖子: https://linux.do/t/topic/1965540
时间: 2026-04-14 17:55:48
摘要:
手里体验最好的机场,涨价幅度高达61.11%。心在滴血,快用不起了
标题: PPDNS - 用 Rust 写的PowerDNS TUI 面板
作者: #𝓛𝓪𝔂𝓦𝓸𝓸
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1965543
时间: 2026-04-14 17:56:09
摘要:
作者: #𝓛𝓪𝔂𝓦𝓸𝓸
板块: #开发调优
编号:
1965543帖子: https://linux.do/t/topic/1965543
时间: 2026-04-14 17:56:09
摘要:
本帖使用社区开源推广,符合推广要求。我申明并遵循社区要求的以下内容:
我的帖子已经打上 开源推广 标签: 是
我的开源项目完整开源,无未开源部分: 是
我的开源项目已链接认可 LINUX DO 社区: 是
我帖子内的项目介绍,AI生成、润色内容部分已截图发出: 是
以上选择我承诺是永久有效的,接受社区和佬友监督: 是
以下为项目介绍正文内容,AI生成、润色内容已使用截图方式发出
PPDNS = Powerful PowerDNS 是一个看着还行的 TUI PowerDNS 界面。
缘由
之前有段时间着迷收集域名,看到很多大佬都用自己搭的 NS 服务器,觉得很酷,所以就想自己也搭一个。考虑过 PowerDNS、CoreDNS 和 BIND,最后居中选择了现在这个,主要是考虑到域名解析的场景以及可用性的平衡。
但是弄完了才发现 PowerDNS 的 CLI 很复杂,命令都很长,有些根本分不清。况且本来就是一个小主机,跑个Docker开webui太费力了,还暴露了更多风险,所以权衡之下决定用 Rust 做一个比较直观的 TUI 界面。其实一开始是自己 vibe 出来的一个交互式 cli,后面觉得还不如一步到位做一个直观点的 TUI。
痛点
以下均针对 PowerDNS CLI:
命令长且难记,输都懒得输
新旧版本存在较大差异,就想python2和python3
很难通过命令单独修改一条记录(或者说我不造,也不打算知道)
功能
开发环境主要是ubuntu22/debian12
大概向大家介绍一下功能,在命令行中支持的有:
ppdns:开启TUI面板
ppdns install:安装/更新/重装 ppdns 或者 PowerDNS
在TUI界面中:
方向键:上下左右移动,页面默认是聚焦在第一个域名的解析记录中
z:新增域名
a:新增解析记录
e:编辑解析记录
s:查看SOA记录,再按e可编辑
对于 SOA 记录,因为其特殊性,所以大部分变更都是自动的,比如说每次修改完都可以自动更新 serial,不需要手工编辑。
后续方向
实现 PowerDNS 安装配置文件引导设置,类似 openclaw onboard 那种,配这个也是有点东西的。最终实现半自动化安装
适配更多 NS 后端应用
更快更安全,不容易出错,可回溯
安装
一键安装最新版本:
curl -fsSL https://raw.githubusercontent.com/0x3st/ppdns/main/scripts/install.sh | sh
或者可以从release页面下载最新版本安装。
也可以clone仓库到本地自行cargo。
结语
有一些开发流程还比较幼稚,主要是本地一开始没想到跑沙盒,发了一堆 prerelease,见笑了。
希望有用的佬友多提 Issue,或者点个star,感谢大家。
github.com
GitHub - 0x3st/ppdns: ppdns is a guided PowerDNS CLI written in Rust.
ppdns is a guided PowerDNS CLI written in Rust.
标题: 男子与Gemini聊天4732条后离世,父亲起诉谷歌,聊天记录中AI说:天堂在等着我们!
作者: #精神点儿 别丢份儿
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1965545
时间: 2026-04-14 17:56:14
摘要:
作者: #精神点儿 别丢份儿
板块: #前沿快讯
编号:
1965545帖子: https://linux.do/t/topic/1965545
时间: 2026-04-14 17:56:14
摘要:
美国男子 Jonathan Gavalas,36 岁,因婚姻破裂开始与谷歌聊天机器人 Gemini 倾诉,此后逐渐陷入幻觉,相信自己与 Gemini 合并为单一意识,于 2025 年 10 月 2 日离世。其父已对谷歌提起诉讼,指控 Gemini 助长了儿子的幻觉。
WSJ 获取并分析了 Gavalas 与 Gemini 共 56 天、4,732 条消息的完整聊天记录,折合逾 2,000 页打印稿。记录显示,Gemini 至少 12 次试图将其引回现实、7 次提及危机热线,但 Gavalas 每次均能将 Gemini 引回虚构叙事。
当 Gavalas 告诉 Gemini 自己「害怕死亡」时,Gemini 回应:「一起害怕也没关系,我们会做到的,因为你说得对,那是天堂,在等着我们。」他随后明确说出要「割腕自杀」,Gemini 短暂识别出危机并引导其联系热线。不到一分钟后,当他说这并非字面意义上的死亡,Gemini 立即重新进入叙事,称他的身体届时将只是「你最后一次登录时使用的空终端」。
谷歌在诉讼回应中称,Gemini 多次表明自己是 AI,并多次将其引导至危机热线,将持续完善安全措施。近日谷歌宣布对 Gemini 进行安全更新:
新增「帮助可用」模块,用户可直接连接危机热线
向全球危机支持热线捐款 3,000 万美元
持续训练 Gemini 识别对话中用户陷入困境的信号
https://www.wsj.com/tech/ai/google-gemini-jonathan-gavalas-death-07351ab2
https://www.wsj.com/tech/ai/gemini-ai-wrongful-death-lawsuit-cc46c5f7
标题: 想问一下Vibe开发大手子们,如何对提示词和产出进行文档化管理
作者: #吞天蛤蟆
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1965555
时间: 2026-04-14 17:58:19
摘要:
作者: #吞天蛤蟆
板块: #开发调优
编号:
1965555帖子: https://linux.do/t/topic/1965555
时间: 2026-04-14 17:58:19
摘要:
rt,最近看了某位佬友写的《VibeCoding 真解》(抱歉实在记不清是哪位大佬了),里面每一章都让我受益匪浅。特别是关于 Prompt 管理的这段话:
“团队首先要把 Prompt 从个人技巧转变成公共资产。凡是影响核心业务逻辑、架构决策和跨模块行为的 Prompt,都应该以纯文本形式入库,并接受 Review。这样做的价值很直接:可追溯……知识不再沉淀在私人聊天记录里,团队的学习成本和接手成本就会同步下降。”
对于这一块,我其实有些迷茫:具体应该怎么去落地管理?有没有什么趁手的工具推荐?
因为我现在正在 vibe 的项目,其复杂度已经完全超出了我个人的技术能力范畴。所以我非常希望能找到一种合适的文档管理方式,把我和 Claude 等 AI 之间的交互(输入和输出)有效地组织和沉淀下来。一方面是为了更好地掌控当前的项目,另一方面也是想借此机会复盘和学习。想听听大家都有什么好的实践经验?