發表文章

目前顯示的是 7月, 2026的文章

Can a Free Model Carry the Grunt Work? GLM-5.2 vs GPT-5.5 Codex, three delegation tasks

Delegation Benchmark · 2026-07-04 · English edition Can a Free Model Carry the Grunt Work? GLM-5.2 vs GPT-5.5 Codex, three delegation tasks Video version (4 min): https://youtu.be/sRqLns96NQM Context: our main coding agent runs on a limited subscription, so we delegate typing-heavy and file-reading work to models on NVIDIA NIM's free tier — the expensive model only writes specs and does acceptance. When z-ai shipped GLM-5.2 we re-ran our delegation eval, with OpenAI Codex CLI (gpt-5.5) as the paid baseline. Every prompt and acceptance test is included below — rerun it yourself. GLM-5.2 totals 93 / 97 / 82 Generate / Read / Modify (out of 100) Codex totals 95 / 95 / 88 Generate / Read / Modify (out of 100) Functional accuracy Both perfect 36 acceptance checks, zero misses on either side Cost $0 vs paid NIM free tier vs ChatGPT subscription quota 00 One-sentence verdict Free GLM-5.2 now matches GPT-5.5 Codex on functional quality (both aced a...

免費模型能扛多少粗活? glm-5.2 × GPT-5.5 Codex 三類委派實測

Delegation Benchmark · 2026-07-04 · 繁體中文 免費模型能扛多少粗活? glm-5.2 × GPT-5.5 Codex 三類委派實測 影片版(4 分鐘): https://youtu.be/2uh8l6u54VE 背景:Claude Code 訂閱 token 有限,我們把「打字與讀大檔」外包給 NVIDIA NIM 免費層的模型,Claude 只負責寫規格與驗收。z-ai 出了 glm-5.2 之後,我們用三種真實委派任務重測,並以 OpenAI Codex CLI(gpt-5.5)同題對照。 全部題目與評分標準都附在文末,歡迎自己重跑。 glm-5.2 三類總分 93 / 97 / 82 生成 / 閱讀 / 修改(滿分 100) Codex 三類總分 95 / 95 / 88 生成 / 閱讀 / 修改(滿分 100) 功能正確率 雙方全滿分 36 個驗收檢查點,兩邊 0 失誤 成本 $0 vs 付費 NIM 免費層 vs ChatGPT 訂閱額度 00 一句話結論 免費的 glm-5.2 在功能品質上已與 GPT-5.5 Codex 同檔次(36 個驗收點雙方全過),分差全在「工程品格」細節:glm 會編造時間戳、時間變異極大(33 秒到 23 分鐘);Codex 時間穩定、後設資訊誠實,但這次被抓到寫完不自測。 在「省 token」前提下,glm-5.2 配上機械化驗收(lint 腳本+diff 檢查)已足堪日常委派;Codex 留給急件與需要可稽核根因的場合。 01 方法 項目 glm-5.2 GPT-5.5 Codex 存取途徑 opencode CLI → NVIDIA NIM 免費層( z-ai/glm-5.2 ) OpenAI Codex CLI 0.139.0( gpt-5.5 ,reasoning medium) 執行形式 headless、同一份 prompt、各自獨立的乾淨工作目錄、可用本機 shell 工具 出題與驗收 由 Claude(Fable 5)設計:標準答案先於測試存在;受測模型拿不到測資與評分標準 驗收環境 PHP 任務雙環境驗收:Windows 本機 PHP 7.3.30 + Debian 13...

開源新作:Clipboard Vault Sync — 複製即存,剪貼簿自動同步到 Obsidian

圖片
複製即存,永久保留。 我開源了一個 Windows 系統匣小工具: Clipboard Vault Sync ——它監看你的剪貼簿,把你複製的所有東西(文字 和圖片 )自動存進 Obsidian vault,變成一則一則帶時間戳的 Markdown 筆記。 為什麼不用 Obsidian 外掛就好? 因為外掛只有在 Obsidian 開著的時候才能收集。這個工具常駐系統匣,整天默默工作——你白天到處複製資料,晚上打開 vault,筆記已經整整齊齊躺在那裡了。 特色 📋 自動收集 ——每次複製自動存成一則筆記(每筆一檔,檔名含日期時間) 🖼️ 圖片也收 ——截圖自動轉 AVIF 格式省空間,筆記內直接顯示 🧠 去重 ——同樣的內容永遠只存一次,連重開機都記得 📁 彈性目標 ——可同步到 vault 內任何子資料夾(例如你的 inbox) ⌨️ 全域快捷鍵 ——設定視窗點一下欄位、按下組合鍵就完成錄製 🔒 100% 本地 ——無網路連線、無遙測,程式碼全開源(MIT),歡迎查驗 誠實提醒 它會存下你複製的 所有 東西——包括密碼等敏感文字。複製機密前請先從系統匣退出程式,或事後刪掉那則筆記。暫停開關與敏感內容過濾已在開發路線圖上。 下載 到 GitHub Releases 下載免安裝的 portable exe(約 88 MB,雙擊即用)或安裝檔。目前支援 Windows;程式碼用的都是跨平台 API,macOS/Linux 理論可跑,歡迎回報。 English Copy anything, keep it forever. I open-sourced Clipboard Vault Sync — a Windows system-tray app that watches your clipboard and saves everything you copy (text and images ) straight into your Obsidian vault as timestamped Markdown notes. Why not just use an Obsidian plugin? Because plugins only capture ...