TrueForge 开源智能体框架实测:成本降75%

elvis · @omarsar0 · X·2026-08-20 02:05·15天前
AI 导读

TrueFoundry 发布开源智能体框架 TrueForge(MIT 许可),可本地一键部署,支持 OpenAI、Anthropic、Google 及 Kimi、GLM、DeepSeek 等开源模型。

elvis@omarsar0
63AI 编辑部评分,满分 100

TrueForge 开源智能体框架实测:成本降75%

2026-08-20 02:05· 15天前
AI 导读

TrueFoundry 发布开源智能体框架 TrueForge(MIT 许可),可本地一键部署,支持 OpenAI、Anthropic、Google 及 Kimi、GLM、DeepSeek 等开源模型。

New open-source agent harness just landed!

I got early access to TrueForge by TrueFoundry and have been running it locally for the past few days.

The harness layer deserves as much attention as the model, and open source matters here because you can inspect the loop, run it on your own infrastructure, and swap to the latest or cheaper models.

TrueForge handles the runtime work that makes an agent reliable.

It drives the tool-calling loop, manages context, coordinates subagents, and executes code in a sandbox, with any model you choose. Every tool call re-sends the growing context to the model, so in practice the harness controls most of what an agent costs to run.

A few things stood out from my testing and their published benchmarks.

Vendor-Neutral by design. It runs OpenAI, Anthropic, and Google models alongside open-weight models like Kimi, GLM, and DeepSeek. Model routing is a setting, and you can send each task to the model that fits it.

On a 14-task enterprise agent benchmark, it matched the accuracy of Claude Managed Agents running the same Opus 4.8 model at roughly 30% lower cost per run (3.8M tokens vs 10M for the same answers).

Routing the same tasks to GLM-5.2 held accuracy and brought cost down by about 75%, around $3 per run instead of $12.

Fully self-hosted and Open Source (MIT License). I had it running locally with one command, with sandboxed code execution working out of the box.

It's time to own your agent harness.

Thanks to @truefoundry for partnering on this post.