Model Releases

ideogram-ai/ideogram-4-nf4 — Ideogram 4 lands in NF4 quantized form, letting you run the flow-matching DiT text-to-image model on significantly less VRAM via a custom Ideogram4Pipeline. If you’ve been eyeing Ideogram’s text rendering but lacked the GPU budget, this is the one to watch.

moonshotai/Kimi-K2.7-Code — Moonshot drops a code-specialized model with multimodal chops (image feature extraction + image-to-text). Built for conversational coding workflows where you paste screenshots and get fixes. Another entrant in the increasingly crowded “coding agent” arena.

Open Source Releases

marin-levanter 0.2.16.dev — Scalable Foundation Model Training with Named Tensors and JAX — Training framework for foundation models on JAX, using named tensors to keep distributed pipelines readable and correct. Targets teams building their own LLM training stacks who want JAX’s scaling without the axis-index mental gymnastics.

marin-haliax 0.2.16.dev — Named Tensors for Legible Deep Learning in JAX — The named-tensor layer powering Levanter. Replaces positional axis references with semantic names, making JAX code less error-prone. If you’ve ever messed up a vmap/pmap axis spec, you’ll appreciate this.

andrewyng/aisuite: Unified Multi-Provider Generative AI Interface — Single interface across OpenAI, Anthropic, Google, etc. Abstracts provider-specific API quirks so you can benchmark, swap, or ensemble models without rewriting integration code. Practical for teams avoiding vendor lock-in.

OpenCode v1.17.6: MCP server compatibility via declared client capabilities — Fixes MCP handshake issues by properly declaring client capabilities. Strict MCP servers will actually connect now. Small but meaningful if you’re building on the MCP ecosystem.

OpenCode v1.17.5: Snowflake Cortex OAuth, MCP session recovery — Adds external-browser OAuth for Snowflake Cortex and recovers expired MCP sessions instead of leaving tools dead. Also polishes project copy management and move-session flows in v2.

Cline v3.89.1: Restore Anthropic on VS Code 1.123+, DeepSeek V4 reasoning format — Patches the Anthropic provider broken by VS Code 1.123’s Node 24 runtime upgrade. Also handles DeepSeek V4’s reasoning format. If you’re on current VS Code and Cline stopped working, this is your fix.

AI Dev Tools

OpenAlex MCP Server — 270M+ academic publications via MCP — MCP server wrapping the OpenAlex catalog (270M+ papers). Lets agents search and retrieve scholarly works programmatically. Useful if you’re building research assistants that need actual citations, not hallucinated DOIs. 📄

Today’s Synthesis

The convergence of aisuite , OpenCode (or Cline ), and the OpenAlex MCP Server gives you a blueprint for a research-grounded coding agent that doesn’t hallucinate citations. Wire aisuite’s provider-agnostic layer so your agent can swap between Claude, GPT-4o, or local models for different tasks — planning vs. implementation vs. review. Plug in OpenCode’s MCP client (now fixed for strict servers) to give the agent access to OpenAlex’s 270M+ papers, your internal docs, and any other MCP-exposed knowledge base. When the agent suggests a library, architecture, or optimization, it pulls the actual paper or spec instead of inventing a DOI. The workflow: you describe a problem, the agent searches OpenAlex for relevant prior work, synthesizes an approach with real citations, then implements it — all while you swap the underlying model via aisuite based on cost/latency/quality needs. No vendor lock-in, no made-up references, and the MCP ecosystem means you can add your private codebase index or ticketing system next week without rewriting the agent core.