惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
博客园 - 【当耐特】
IT之家
IT之家
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
V
Visual Studio Blog
F
Fortinet All Blogs
The Cloudflare Blog
Last Week in AI
Last Week in AI
博客园 - 司徒正美
G
Google Developers Blog
Vercel News
Vercel News
爱范儿
爱范儿
小众软件
小众软件
WordPress大学
WordPress大学
I
InfoQ
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Check Point Blog
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

InfoQ

Open-Source Project Brings Full iOS 27 Virtualization to Apple Silicon From Retrieval to Reasoning: Building Production-Ready Agentic AI Systems with Knowledge Graphs Lambda SnapStart Comes to Container Images, Ending a Packaging Tradeoff One Decade of Rustls: Evolution, Benchmarks, and Future Roadmap NVIDIA Personal AI Router Distributes AI Tasks across Local Compute Netflix Reworks Conductor for 420 Million Monthly Workflow Executions and 10X Larger Workflows tsgolint Reaches Stable v7, Bringing Go-Powered Type-Aware Linting to Oxlint Terraform AWS Provider Continues Rapid Expansion as AWS Infrastructure Becomes More Complex How To Run on Three Clouds at Once, and When Not To How LinkedIn Trains AI Job Search 8x Faster with Multi-Teacher Distillation Session Traces and Cost Controls Help Diagnose AI Agent Failures Advancing Embedded Go: Recoverable Panics, UEFI, Radio and Hardware Dev Kit Blume: Zero-Config Docs Framework That Turns a Markdown Folder into an AI-Ready Website Redefining GIS: Declarative Symbology and Collaborative Workflows in JupyterGIS Airbnb Cuts Authentication Code by 60% with Server Driven Architecture Kubernetes Promotes KYAML as a Safer, More Consistent Way to Work with Manifests Next-Gen Architecture Playbook: Insights and Patterns for the AI Era From S3 to GPU in One Copy: Rethinking Data Loading for ML Training Copilot Code Review Reaches Azure Repos, Billed Per Review with Reporting Two Days Behind Personality Over Skillset: How Adam Wachtel Builds Engineering Teams Tether: Apple Continuity Like Experience Between iOS and Linux Desktop Machines Twenty Years of jQuery: How a Little Library Rewired Web Development Shopify Introduces Gisting: Compressing LLM System Prompts into Learned Tokens Rigorous Yet Sustainable Human Reviews in the AI Era pnpm 12 Rewrites Package Manager in Rust, Accelerating Installs While Preserving pnpm 11 Workflows Instrumentation at Scale: Having Your Performance Cake and Eating It Too Cohere’s Parse 5 Promises Efficient Multi-Modal Information Extraction From Complex Documents Swiggy Uses 350+ Features and Multi-Task MLP to Predict Customer Lifetime Value OpenAI Details GPT-Live’s Architecture for Continuous Stateful Voice Interaction Beyond Prompting: Context Engineering for Production-Grade AI
GitHub Copilot
Olimpiu Pop · 2026-09-13 · via InfoQ

GitHub has introduced Project HydraFusion, an advanced research preview for GitHub Copilot designed to deliver frontier-level coding intelligence through runtime model orchestration. Building on previous automatic model selection capabilities, HydraFusion treats workflow execution as an optimisation challenge, dynamically building full execution plans using models from multiple providers to handle core developer tasks.

The system evaluates incoming prompts using explicit capability signals tailored for complex operations, including multi-step reasoning, automated code generation, structured debugging, and advanced tool use. Rather than relying on a single static model, HydraFusion routes requests across three distinct runtime execution patterns depending on the task's complexity and context:

  • Single: One selected model executes directly when it has sufficient capability to solve the task independently, optimising for speed and low latency.
  • Cascade: An efficient model generates an initial solution draft, which a quality gate evaluates. If the output satisfies requirements, it is accepted; otherwise, the task escalates to a stronger, more capable model.
  • Critique: A drafting model produces an initial solution artefact, which is then assessed by an independent, read-only critic model drawn from a separate model family without tool execution access (mirroring the Rubber Duck review pattern). The original drafting model then performs a single structured revision based on this review.

To ensure robust and production-grade execution, HydraFusion’s architecture is anchored by five fundamental operating principles. These include complete accounting to track token cost and usage across every workflow leg (drafting, critique, revision, escalation, retry, and fallback), bounded execution enforcing strict timeouts and cancellation handles, isolated review steps that prevent modifier actions within a tool-less environment, fail-safe application routines that reject patches if validation fails or execution is cancelled, and validated routing to pre-check model availability and bindings before runtime kicks off.

In controlled offline evaluations across three agentic coding benchmarks, HydraFusion’s selective runtime workflows matched or exceeded baseline quality metrics while substantially reducing estimated costs. Notably, on TerminalBench 2.1, it delivered a 4.9 percentage point improvement in verified task quality while achieving a 67% reduction in estimated cost compared to Claude Opus 5.

On CheckpointBench, an internal multi-turn benchmark curated from real, replayable GitHub Copilot agentic coding sessions anchored to specific public repositories and immutable commits, the project achieved a mean session score virtually tied with the Claude Opus 5 reference baseline, registering a minor 0.1 percentage point difference while lowering estimated workflow costs by 65%.

Project HydraFusion is currently available as a research preview to users across all GitHub Copilot tiers via the /experimental configuration inside the GitHub Copilot CLI. Developers can engage the feature by updating their CLI environment, executing /experimental on, and selecting HydraFusion from the /model selection interface, with usage billed according to the standard token rates of the underlying models invoked during execution.

About the Author

Olimpiu Pop