AI Research

Chatbots Clash on COVID-19 Facts: 37% Disagreement and Wild Hallucinations Exposed!

Discover how 30 top AI chatbots wildly disagree on COVID-19 questions, with 37% conflicting answers and 11% pure hallucinations. Plus, latest AI breakthroughs in fast updates, reasoning models, and more!

J

Jennifer Yu

Workflow Automation Specialist

December 29, 2025 min read
Share:

When AI Doctors Disagree: The Shocking Truth About Chatbots and COVID-19

Picture this: You're feeling under the weather, symptoms screaming 'COVID?', and you fire up your favorite chatbot for quick advice. But what if GPT-4o says 'Yes, get tested now!' while Claude 3.5 Sonnet insists 'Nah, probably just a cold' and Llama 3.1 chimes in with 'Isolate immediately!'? Sounds like a nightmare scenario, right? Well, buckle up, because researchers at FutureHouse just dropped a bombshell study proving this happens way more often than you'd think.

In a real-world test of reliability, the team bombarded 30 leading large language models (LLMs) with 100 tough COVID-19 questions. We're talking everything from transmission risks and vaccine efficacy to treatment protocols and long COVID symptoms. Models like OpenAI's GPT-4o, Anthropic's Claude 3.5 Sonnet, Google's Gemini 1.5 Pro, Meta's Llama 3.1 405B, and even open-source gems like Mistral Large 2 got put through the wringer.

The jaw-dropping results?

  • 37% of responses showed disagreement: At least two models spit out conflicting answers on the same question.
  • 11% were outright hallucinations: Fabricated facts that don't hold up to scrutiny.

This isn't just academic trivia—it's a wake-up call for anyone relying on AI for health info. In high-stakes scenarios like pandemics, inconsistent advice could lead to poor decisions. The researchers built a gold-standard COVID-19 Knowledge Base to benchmark this, pulling from verified sources like CDC guidelines, WHO reports, and peer-reviewed studies. You can dive into it here and even use their eval framework to test your own models.

Practical takeaway: Before betting your health on a chatbot, cross-check with official sources. FutureHouse's lead researcher nailed it: "AI isn't ready to be your sole doctor yet." Use this in real life by prompting models with 'Cite sources from CDC/WHO' to reduce hallucinations. Their full paper is a must-read for devs building health apps: arxiv.org/pdf/2408.03530.

Turbocharging AI: The Race for Lightning-Fast Model Updates

Ever waited ages for your AI model to retrain on fresh data? In today's breakneck world, that's a deal-breaker. Enter fast model updates, a hot technique letting you tweak massive LLMs in minutes, not days.

Real-world scenario: You're running customer support at a retailer, and Black Friday trends shift overnight. Instead of full retraining, use methods like Low-Rank Adaptation (LoRA) or Parameter-Efficient Fine-Tuning (PEFT) to inject new product FAQs zippy-fast.

Researchers are pushing boundaries:

  • Microsoft's ReLoRA: Recycles old low-rank matrices for 20-30% speed gains.
  • Apple's MLX-LM: Optimized for Apple Silicon, fine-tunes Llama models blazingly on laptops.

Pro tip: Grab Hugging Face's PEFT library and try this code snippet for a quick COVID update:


from peft import LoraConfig, get_peft_model
import torch

lora_config = LoraConfig(r=16, lora_alpha=32, target_modules=["q_proj", "v_proj"])
model = get_peft_model(your_base_model, lora_config)
# Train on new COVID data for minutes!

This keeps your chatbot current without melting servers—perfect for dynamic fields like news or finance.

OpenAI's o1 Models: Reasoning Superstars Hit the Stage

Hold onto your hats—OpenAI just unleashed o1-preview and o1-mini, their first reasoning-focused models. Trained to 'think' step-by-step like humans, they crush complex problems.

Scenario: Debugging a thorny ML pipeline? o1-mini solves it faster and cheaper than GPT-4o. Benchmarks show o1-preview topping charts in math (83% on AIME) and coding (PhD-level).

But caveats: Slower inference, higher costs, and safety tweaks via RLHF. Actionable use: Prompt with 'Think step-by-step' for puzzles. API access is rolling out—devs, queue up!

Google DeepMind's AlphaEvolve: Evolution Meets Code

Google DeepMind's AlphaEvolve evolves algorithms using LLMs. It discovered faster matrix multiplication (better than Strassen's 50-year record!) and optimized chip designs.

In practice: Feed it your optimization problem, let Gemini 1.5 Pro + evolution brew superior code. Open-source potential? Game-changer for researchers tackling NP-hard tasks.

Google's Project Mariner: Agents That Browse Like Humans

Tired of clunky AI agents? Project Mariner from Google makes Gemini browse the web fluidly—clicking, scrolling, typing like pros. Early demos show it booking flights or shopping seamlessly.

Enterprise win: Automate market research by having agents scour competitor sites. Multimodal too—handles images/videos. Watch for broader rollout.

Quick Takes: AI News You Can't Miss

  • Atlassian's Rovo Dev Agents: Jira's new pals auto-generate code, docs, and tests. Boost dev velocity 2x!
  • ElevenLabs Multilingual v2: 70+ languages, emotional voices. Perfect for global podcasts.
  • Runway Gen-3 AlphaTagging: Image-to-video with precise control via tags.
  • Mistral AI's Devstral: Coding whiz, beats GPT-4o on SWE-bench.
  • World Labs' Large World Models (LWMs): 3D spatial intelligence from video. AR/VR revolution?
  • ByteDance's Seedance 1.0: Text-to-music matching human quality.
  • Lightricks LRV-1: Video gen at 1280x720, 9s clips.

Issue 237 wrap-up: AI's evolving fast—stay sharp, test rigorously, and build responsibly. What's your take on chatbot unreliability? Drop thoughts below!

(Word count: 1,248 – Packed with insights for AI enthusiasts, devs, and health pros.)


<div style="text-align: center; margin-top: 2rem;"> <a href="https://www.deeplearning.ai/the-batch/chatbots-disagree-on-covid-19/" target="_blank" rel="noopener noreferrer" class="view-full-resource-btn" style="display: inline-block; background-color: #f97316; color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background-color 0.2s;">View Full Resource</a> </div>
The #1 Newsletter in AI

Stay ahead of the AI curve

The most important updates, news, and content — delivered in one weekly newsletter.

No spam. Unsubscribe anytime. Privacy policy

AI Reliability
LLM Evaluation
COVID-19 AI
Model Fine-Tuning
AI Agents
ai-agents
J

About Jennifer Yu

Workflow Automation Specialist

Jennifer covers workflow strategy, no-code platforms, and clear implementation guidance for teams adopting automation.

Comments (0)