Model Releases

  • zed-industries/zeta-2 — A code‑editing model built on ByteDance Seed‑Coder‑8B, fine‑tuned for next‑edit suggestion and edit prediction. It ships as a safetensors‑compatible Transformer under Apache 2.0, ready for IDE integration.
  • nvidia/gpt-oss-puzzle-88B — An 88‑billion‑parameter mixture‑of‑experts model from NVIDIA meant as a puzzle‑style benchmark for GPT‑OSS architectures. It uses MXFP4 8‑bit quantization and is released under a custom license, with accompanying arxiv papers detailing its design.

Open Source Releases

  • agent-xray 1.21.0 — A local‑first toolkit for debugging, grading, and replaying AI agent traces. It offers breakpoint‑like inspection, performance scoring, and session replay to help iterate on complex workflows.

Research Worth Reading

AI Dev Tools

  • claude-howto — A visual, example‑driven guide to Claude Code that walks users from basics to building advanced agents, complete with copy‑paste templates and best‑practice notes.
  • hermes-agent — A modular agent framework from Nous Research focused on continual learning and adaptability, providing core components, example agents, and documentation for building evolving agents.
  • OpenBB — An open‑source financial data platform that unifies market data, fundamentals, and alternative datasets via a single API, interactive terminal, and Python SDK for analysts, quants, and AI agents.

Today’s Synthesis

Pairing Zed Industries’ Zeta‑2 code‑editing model with the agent‑xray toolkit gives engineers a tight loop for building and debugging AI‑powered IDE assistants. Because Zeta‑2 ships under Apache 2.0 and loads as a safetensors file, you can drop it into a private GPU node or even a quantized CPU build without worrying about licensing friction, and agent‑xray’s breakpoint‑like inspection works the same way whether the model runs locally or in a container. Zeta‑2, a safetensors‑ready 8B model fine‑tuned for next‑edit suggestion, can be hooked into an extension that proposes edits as you type, while agent‑xray records every agent turn, scores performance, and lets you replay sessions to spot where the model over‑ or under‑corrects. Add the visual guide from claude‑howto to scaffold the agent scaffolding—its copy‑paste templates show how to wire a Claude‑style controller, handle tool calls, and persist state, so you spend less time plumbing and more time iterating on the edit‑suggestion logic. The result is a locally‑runnable, inspectable coding copilot that you can tune, benchmark, and ship without sending data off‑site.