Model Releases

  • empero-ai Qwen3.8-27B Ridge GGUF — GGUF-quantized Qwen3.8-27B with ridge gated-delta-net, imatrix, and MTP speculative decoding. Long-context multimodal vision reasoning with en-zh support and endpoints_compatible deployment.

Open Source Releases

  • minimal-harness 0.8.1a6 — Lean Python SDK for LLM agents with core abstractions, registries, runtime event protocol, and lifecycle management. Built for minimal overhead and composable architectures.
  • xgen-omnifuse 0.5.0 — Backend-agnostic GraphRAG that fuses vector embeddings and graph seeds via maximal marginal relevance for single-synthesis retrieval. Zero-infrastructure default deployment.
  • anthropics/claude-code v2.1.237 — Fixes prompt caching for sessions via LLM gateway or custom base URL. Adds “Concise” output style that leads with results and skips preamble.
  • sst/opencode v1.18.19 — Adds native OpenAI and Anthropic passthroughs for Cloudflare AI Gateway models. Matches Codex rate limits to ChatGPT subscription limits for consistent throttling.
  • census-mcp-server — MCP server for querying U.S. Census Bureau data including variables, geography, and demographic statistics. Structures responses for easy integration into research agents.

Research Worth Reading

Today’s Synthesis

If you’ve ever wondered whether looping a mixer or feed-forward network in a language model yields better tokens per FLOP, Allocating Recurrent Compute in Looped Language Models provides a taxonomy: not all layers should recur, and the choice depends on operation type. Complementary work Think Shallow, Solve Deep: Controlling Recurrent Dynamics for Reliable Test-Time Depth shows that the finite-time dynamical regime of trained recurrent operators predicts whether extra test-time iterations help or hurt, giving you a concrete control framework to select optimal recurrence depth rather than blindly iterating. Pair that with Accelerating Visual On-Policy Distillation with Batched Speculative Jacobi Rollouts , which does away with token-by-token autoregressive overhead entirely by fusing Jacobi rollouts across batches, and you have a triad of decisions: what to loop, when to stop, and how to decode the results efficiently. An engineer can start by profiling layer-wise FLOP patterns, apply the dynamical stability test to lock in recurrence depth, then deploy batched SJD for distilled visual models—gaining both accuracy reliability and inference throughput without guessing.