{"id":95067,"date":"2026-04-06T14:53:49","date_gmt":"2026-04-06T21:53:49","guid":{"rendered":"https:\/\/github.blog\/?p=95067"},"modified":"2026-04-06T14:53:51","modified_gmt":"2026-04-06T21:53:51","slug":"github-copilot-cli-combines-model-families-for-a-second-opinion","status":"publish","type":"post","link":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/","title":{"rendered":"GitHub Copilot CLI combines model families for a second opinion"},"content":{"rendered":"<!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<html><body><p>When you ask a coding agent to build a data pipeline, it may not use the best structure. But what if the agent got a second opinion before it executed the plan?<\/p>\n\n\n\n<p>Today, in <a href=\"https:\/\/github.com\/features\/copilot\/cli?utm_source=blog-cross-model-cta&amp;utm_medium=blog&amp;utm_campaign=copilot-cli-cross-model-march-2026\">GitHub Copilot CLI<\/a>, we&rsquo;re introducing <strong>Rubber Duck in experimental mode<\/strong>. Rubber Duck leverages a second model from a different AI family to act as an independent reviewer, assessing the agent&rsquo;s plans and work at the moments where feedback matters most.<\/p>\n\n\n\n<p>To catch different kinds of errors, a different perspective matters. Our evaluations show that Claude Sonnet + Rubber Duck makes up 74.7% of the performance gap between Sonnet and Opus alone, achieving better results for tackling difficult multi-file and long-running tasks. Use <code>\/experimental<\/code> in Copilot CLI to access Rubber Duck alongside our other experimental features.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-problem-confident-mistakes-can-compound\">The problem: Confident mistakes can compound<\/h2>\n\n\n\n<p>Today&rsquo;s coding agents follow a clear loop. First, the agent assesses the task, then drafts a plan, implements, tests, and iterates if necessary. It&rsquo;s a powerful flow that works well, but it has blind spots. Any decision an agent makes early on, especially in the planning stage, is the foundation you&rsquo;re building upon. Assumptions and inefficiencies become dependencies, and by the time you notice, you may have to fix more than just the small mistake at the start.<\/p>\n\n\n\n<p>Using self-reflection and having the agent review its own output before moving forward is a proven technique. <strong>However, a model reviewing its own work is still bounded by its own training biases: the same training data and techniques, the same blind spots.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-rubber-duck-adds-a-second-perspective\">Rubber Duck adds a second perspective<\/h2>\n\n\n\n<p>Rubber Duck is a focused review agent, powered by a model from a complementary family to your primary Copilot session. When you&rsquo;ve selected a Claude model from the model picker to use as your orchestrator, Rubber Duck will be GPT-5.4. As we experiment with Rubber Duck, we are exploring other model families for the orchestrator and for the Rubber Duck. The job of Rubber Duck is to check the agent&rsquo;s work and surface a short, focused list of high-value concerns: details that the primary agent may have missed, assumptions worth questioning, and edge cases to consider.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-does-the-cross-family-review-help\">When does the cross-family review help?<\/h3>\n\n\n\n<p>We evaluated Rubber Duck on <a href=\"https:\/\/www.swebench.com\/\">SWE-Bench Pro<\/a>, a benchmark of large, difficult, real-world coding problems drawn from open-source repositories. Here&rsquo;s what we found:<\/p>\n\n\n\n<p>Claude Sonnet 4.6 paired with Rubber Duck running GPT-5.4 achieved a resolution rate approaching Claude Opus 4.6 running alone, closing 74.7% of the performance gap between Sonnet and Opus.<\/p>\n\n\n\n<p>We noticed that Rubber Duck tends to help more with difficult problems, ones that span 3+ files and would normally take 70+ steps. On these problems, Sonnet + Rubber Duck scores 3.8% higher than the Sonnet baseline, and 4.8% higher on the hardest problems identified across three trials. Here are a few examples of what Rubber Duck finds:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Architectural catch (OpenLibrary\/async scheduler)<\/strong>: Rubber Duck caught that the proposed scheduler would start and immediately exit, running zero jobs&mdash;and that even if fixed, one of the scheduled tasks was itself an infinite loop.<\/li>\n\n\n\n<li><strong>One-liner bug, big impact (OpenLibrary\/Solr)<\/strong>: Rubber Duck caught a loop that silently overwrote the same <code>dict<\/code> key on every iteration. Three of four Solr facet categories were being dropped from every search query, with no error thrown.<\/li>\n\n\n\n<li><strong>Cross-file conflict (NodeBB\/email confirmation)<\/strong>: Rubber Duck caught three files that all read from a Redis key which the new code stopped writing. The confirmation UI and cleanup paths would have been silently broken on deploy.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-does-rubber-duck-activate\">When does Rubber Duck activate?<\/h3>\n\n\n\n<p>GitHub Copilot can call Rubber Duck <strong>automatically<\/strong>, both <strong>proactively<\/strong> and <strong>reactively<\/strong>, and it can be triggered by a user at any time to critique and revise its work.<\/p>\n\n\n\n<p>For complex work, GitHub Copilot may seek a critique automatically at the checkpoints where feedback has the highest return:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>After drafting a plan:<\/strong> This is where we expect developers will see the biggest wins, because catching a suboptimal decision early avoids compounding errors downstream.<\/li>\n\n\n\n<li><strong>After a complex implementation:<\/strong> This is when a second set of eyes on complex code can help catch edge cases.<\/li>\n\n\n\n<li><strong>After writing tests, before executing them:<\/strong> This is a chance to catch gaps in test coverage or flawed assertions, before self-reinforcing that &ldquo;everything passes.&rdquo;<\/li>\n<\/ol>\n\n\n\n<p>The agent can also seek a critique reactively if it gets stuck in a loop or can&rsquo;t make progress. Consulting Rubber Duck can break the logjam.<\/p>\n\n\n\n<p>As a user, you can request a critique at any point. Copilot will query Rubber Duck, reason over the feedback, and show you what changed and why.<\/p>\n\n\n\n<p>We made a key design choice: the agent invokes Rubber Duck sparingly, targeting the moments where the signal is highest, without getting in the way. For the technically curious: Rubber Duck is invoked through Copilot&rsquo;s existing task tool&mdash;the same infrastructure used for other subagents.<\/p>\n\n\n\n<p>For now, we are enabling Rubber Duck for all Claude family models (Opus, Sonnet, and Haiku) used as orchestrators in the model picker. We are already exploring other model families for the Rubber Duck to pair with GPT-5.4 as the orchestrator.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-getting-started\">Getting started<\/h2>\n\n\n\n<p>Rubber Duck is available today in <a href=\"https:\/\/github.com\/github\/copilot-cli?tab=readme-ov-file#experimental-mode\">experimental mode<\/a>.<\/p>\n\n\n\n<p>To start using it, install <a href=\"https:\/\/github.com\/features\/copilot\/cli?utm_source=blog-cross-model-cta&amp;utm_medium=blog&amp;utm_campaign=copilot-cli-cross-model-march-2026\">GitHub Copilot CLI<\/a>, and run the <code>\/experimental<\/code> slash command. Rubber Duck will be available when you select any Claude model from the model picker and have access enabled to GPT-5.4. You&rsquo;ll see critiques surface in two ways:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatically, when Copilot decides a checkpoint warrants a second opinion: after planning, after complex implementations, or after writing tests.<\/li>\n\n\n\n<li>On demand, whenever you ask. Just tell Copilot to critique its work, and it will invoke Rubber Duck, incorporate the feedback, and show you exactly what changed.<\/li>\n<\/ul>\n\n\n\n<p>Where Rubber Duck helps most:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Complex refactors and architectural changes<\/li>\n\n\n\n<li>High-stakes tasks where a miss is costly<\/li>\n\n\n\n<li>Ensuring comprehensive test coverage<\/li>\n\n\n\n<li>Any time you want a second opinion on a plan before committing to it<\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-group post-content-cta has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Rubber Duck in <a href=\"https:\/\/github.com\/features\/copilot\/cli?utm_source=blog-cross-model-cta&amp;utm_medium=blog&amp;utm_campaign=copilot-cli-cross-model-march-2026\">GitHub Copilot CLI<\/a> is now available in experimental mode. Share your feedback with us in the <a href=\"https:\/\/github.com\/orgs\/community\/discussions\/191734\">discussion<\/a>.<\/p>\n<\/div>\n<\/body><\/html>\n","protected":false},"excerpt":{"rendered":"<p>Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI. <\/p>\n","protected":false},"author":2422,"featured_media":93163,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_gh_post_show_toc":"yes","_gh_post_is_no_robots":"","_gh_post_is_featured":"yes","_gh_post_is_excluded":"","_gh_post_is_unlisted":"","_gh_post_related_link_1":"","_gh_post_related_link_2":"","_gh_post_related_link_3":"","_gh_post_sq_img":"","_gh_post_sq_img_id":"","_gh_post_cta_title":"","_gh_post_cta_text":"","_gh_post_cta_link":"","_gh_post_cta_button":"","_gh_post_recirc_hide":"","_gh_post_recirc_col_1":"","_gh_post_recirc_col_2":"","_gh_post_recirc_col_3":"","_gh_post_recirc_col_4":"","_featured_video":"","_gh_post_additional_query_params":"","_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"_links_to":"","_links_to_target":""},"categories":[3293,3295],"tags":[3660,2535,3754],"coauthors":[3837,3838],"class_list":["post-95067","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-and-ml","category-github-copilot","tag-ai-agents","tag-github-copilot","tag-github-copilot-cli"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>GitHub Copilot CLI combines model families for a second opinion - The GitHub Blog<\/title>\n<meta name=\"description\" content=\"Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GitHub Copilot CLI combines model families for a second opinion\" \/>\n<meta property=\"og:description\" content=\"Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/\" \/>\n<meta property=\"og:site_name\" content=\"The GitHub Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-06T21:53:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-06T21:53:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nick McKenna, Bartek Perz\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nick McKenna, Bartek Perz\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/\"},\"author\":{\"name\":\"Nick McKenna\",\"@id\":\"https:\\\/\\\/github.blog\\\/#\\\/schema\\\/person\\\/124edb238f639dc75affcdb4d115c6f4\"},\"headline\":\"GitHub Copilot CLI combines model families for a second opinion\",\"datePublished\":\"2026-04-06T21:53:49+00:00\",\"dateModified\":\"2026-04-06T21:53:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/\"},\"wordCount\":1003,\"image\":{\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080\",\"keywords\":[\"AI agents\",\"GitHub Copilot\",\"GitHub Copilot CLI\"],\"articleSection\":[\"AI &amp; ML\",\"GitHub Copilot\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/\",\"url\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/\",\"name\":\"GitHub Copilot CLI combines model families for a second opinion - The GitHub Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/github.blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080\",\"datePublished\":\"2026-04-06T21:53:49+00:00\",\"dateModified\":\"2026-04-06T21:53:51+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/github.blog\\\/#\\\/schema\\\/person\\\/124edb238f639dc75affcdb4d115c6f4\"},\"description\":\"Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#primaryimage\",\"url\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080\",\"contentUrl\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080\",\"width\":1920,\"height\":1080,\"caption\":\"Decorative illustration featuring Ducky inside a translucent cube surrounded by green geometric blocks.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/github-copilot-cli-combines-model-families-for-a-second-opinion\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/github.blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI &amp; ML\",\"item\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"GitHub Copilot\",\"item\":\"https:\\\/\\\/github.blog\\\/ai-and-ml\\\/github-copilot\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"GitHub Copilot CLI combines model families for a second opinion\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/github.blog\\\/#website\",\"url\":\"https:\\\/\\\/github.blog\\\/\",\"name\":\"The GitHub Blog\",\"description\":\"Updates, ideas, and inspiration from GitHub to help developers build and design software.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/github.blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/github.blog\\\/#\\\/schema\\\/person\\\/124edb238f639dc75affcdb4d115c6f4\",\"name\":\"Nick McKenna\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8ab0e3bb77dbece14e5c913c67adab0265e4be003444349e6fc18c9ebfd9e3a?s=96&d=mm&r=g9ca59f54b4b339e39d9f83c3ce6ccdba\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8ab0e3bb77dbece14e5c913c67adab0265e4be003444349e6fc18c9ebfd9e3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8ab0e3bb77dbece14e5c913c67adab0265e4be003444349e6fc18c9ebfd9e3a?s=96&d=mm&r=g\",\"caption\":\"Nick McKenna\"},\"description\":\"Applied Researcher III\",\"url\":\"https:\\\/\\\/github.blog\\\/author\\\/nickthinks\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"GitHub Copilot CLI combines model families for a second opinion - The GitHub Blog","description":"Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/","og_locale":"en_US","og_type":"article","og_title":"GitHub Copilot CLI combines model families for a second opinion","og_description":"Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI.","og_url":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/","og_site_name":"The GitHub Blog","article_published_time":"2026-04-06T21:53:49+00:00","article_modified_time":"2026-04-06T21:53:51+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png","type":"image\/png"}],"author":"Nick McKenna, Bartek Perz","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Nick McKenna, Bartek Perz","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#article","isPartOf":{"@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/"},"author":{"name":"Nick McKenna","@id":"https:\/\/github.blog\/#\/schema\/person\/124edb238f639dc75affcdb4d115c6f4"},"headline":"GitHub Copilot CLI combines model families for a second opinion","datePublished":"2026-04-06T21:53:49+00:00","dateModified":"2026-04-06T21:53:51+00:00","mainEntityOfPage":{"@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/"},"wordCount":1003,"image":{"@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#primaryimage"},"thumbnailUrl":"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080","keywords":["AI agents","GitHub Copilot","GitHub Copilot CLI"],"articleSection":["AI &amp; ML","GitHub Copilot"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/","url":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/","name":"GitHub Copilot CLI combines model families for a second opinion - The GitHub Blog","isPartOf":{"@id":"https:\/\/github.blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#primaryimage"},"image":{"@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#primaryimage"},"thumbnailUrl":"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080","datePublished":"2026-04-06T21:53:49+00:00","dateModified":"2026-04-06T21:53:51+00:00","author":{"@id":"https:\/\/github.blog\/#\/schema\/person\/124edb238f639dc75affcdb4d115c6f4"},"description":"Discover how Rubber Duck provides a different perspective to GitHub Copilot CLI.","breadcrumb":{"@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#primaryimage","url":"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080","contentUrl":"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080","width":1920,"height":1080,"caption":"Decorative illustration featuring Ducky inside a translucent cube surrounded by green geometric blocks."},{"@type":"BreadcrumbList","@id":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/github-copilot-cli-combines-model-families-for-a-second-opinion\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/github.blog\/"},{"@type":"ListItem","position":2,"name":"AI &amp; ML","item":"https:\/\/github.blog\/ai-and-ml\/"},{"@type":"ListItem","position":3,"name":"GitHub Copilot","item":"https:\/\/github.blog\/ai-and-ml\/github-copilot\/"},{"@type":"ListItem","position":4,"name":"GitHub Copilot CLI combines model families for a second opinion"}]},{"@type":"WebSite","@id":"https:\/\/github.blog\/#website","url":"https:\/\/github.blog\/","name":"The GitHub Blog","description":"Updates, ideas, and inspiration from GitHub to help developers build and design software.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/github.blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/github.blog\/#\/schema\/person\/124edb238f639dc75affcdb4d115c6f4","name":"Nick McKenna","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a8ab0e3bb77dbece14e5c913c67adab0265e4be003444349e6fc18c9ebfd9e3a?s=96&d=mm&r=g9ca59f54b4b339e39d9f83c3ce6ccdba","url":"https:\/\/secure.gravatar.com\/avatar\/a8ab0e3bb77dbece14e5c913c67adab0265e4be003444349e6fc18c9ebfd9e3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a8ab0e3bb77dbece14e5c913c67adab0265e4be003444349e6fc18c9ebfd9e3a?s=96&d=mm&r=g","caption":"Nick McKenna"},"description":"Applied Researcher III","url":"https:\/\/github.blog\/author\/nickthinks\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/github.blog\/wp-content\/uploads\/2026\/01\/00ab37fbbb9bc343b007734b0e5805a26e747c90d955750bd976cb9ce84f6a2a-1920x1080-1.png?fit=1920%2C1080","jetpack_shortlink":"https:\/\/wp.me\/pamS32-oJl","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts\/95067","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/users\/2422"}],"replies":[{"embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/comments?post=95067"}],"version-history":[{"count":1,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts\/95067\/revisions"}],"predecessor-version":[{"id":95068,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts\/95067\/revisions\/95068"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/media\/93163"}],"wp:attachment":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/media?parent=95067"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/categories?post=95067"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/tags?post=95067"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/coauthors?post=95067"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}