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

推荐订阅源

博客园_首页
N
Netflix TechBlog - Medium
V
Visual Studio Blog
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
量子位
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
V
V2EX
The Cloudflare Blog
月光博客
月光博客
Last Week in AI
Last Week in AI
雷峰网
雷峰网
WordPress大学
WordPress大学
博客园 - 【当耐特】
博客园 - 聂微东
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Two opposite designs for AI meeting notes: transcribe eve...
Tien Nguyen · 2026-06-16 · via DEV Community

I ran the same meeting through two AI notetakers, Otter and Granola, expecting to compare accuracy. The accuracy was close. What actually separated them was something more interesting: they aren't built to do the same job. They sit on opposite models of what a meeting "note" even is, and once you see the two designs, the "which is better" question dissolves into "which model fits your workflow."

Two models

Strip away the branding and you get two functions. This is conceptual — I'm describing the designs, not either company's internal code:

# Model A — transcribe everything, then summarize  (Otter)
notes = summarize(transcribe(audio))

# Model B — enhance what you typed  (Granola)
notes = enhance(user_bullets, transcribe(audio))

Model A captures the whole call verbatim, labels who spoke, and then runs an extractive summary over that complete record. The transcript is the primary artifact; the summary is derived from it. You did nothing during the meeting; the tool recorded everything.

Model B inverts the inputs. You jot a few rough bullets during the call, and the tool merges your notes with what it heard — using your fragments as a seed and filling in the specifics from the audio. The finished summary is the primary artifact; the raw transcript is secondary (Granola even deletes the audio once it has the text).

The difference isn't cosmetic. The two models take different inputs, so they produce structurally different outputs and fail in different ways.

What that looked like on one meeting

I fed both an 80-second, two-speaker product meeting (synthetic voices, so I knew the exact right answer) and, for Granola, typed six sloppy bullets while it listened — fragments like "get API latency under 200ms, file P1."

  • Otter (Model A) produced the more literal, verbatim transcript and labeled both speakers cleanly. It was a complete, attributed record — though it dropped the quarter off one figure, turning "Q3" into "Q." If the word-for-word record is what you need, this is it.
  • Granola (Model B) garbled a line in its raw transcript, but that's not what it's for. Its enhanced summary — my six bullets fused with what it heard — was the most complete and usable write-up either tool produced. It pulled in specifics my notes left out (an activation jump, a flagged latency spike, an owner to loop in) and organized them around the things I'd already signaled mattered by typing them.

Same meeting, opposite artifacts: one a faithful transcript, the other a send-ready recap.

Why the input model decides the output

Here's the part worth internalizing if you build with LLMs at all. Model B tends to produce more useful notes not because of a better model, but because it has a better input: your relevance signal. When you type "file P1," you've told the system this mattered — a piece of human judgment an extractive summarizer over a raw transcript simply doesn't have. The augmentation model gets to condition on what a participant already decided was important.

That also predicts its failure mode exactly: type nothing and Model B collapses toward Model A. Granola's whole edge assumes you take notes; give it no bullets and you lose the augmentation that makes it special. Model A has no such dependency — it records everything whether you participate or not, which is precisely why it's the safer default for a meeting you can't also take notes in.

So the trade is structural, not a quality ranking:

  • Model A (transcribe-everything) gives you a verbatim, speaker-labeled, searchable archive, and keeps the audio for playback. The transcript itself is a deliverable. Best when the record matters — exact quotes, who-said-what, a meeting you need to reconstruct later.
  • Model B (enhance-your-notes) gives you a finished recap seeded by your own judgment, plus an ask-anything memory across your notes — but it deletes the audio and assumes you're an active participant who jots. Best when the output matters and you're in the room thinking.

(Audio capture — whether a bot joins the call or it records your system audio — is a separate axis from note generation; I'm only talking about the latter here.)

The decision, and the build lesson

For choosing a tool, the framing that actually helps isn't "which is more accurate." Both are fine on clean audio. It's "do I want a record or a recap?" A record you can search and quote → the transcribe-everything model. A finished write-up you'll forward without editing → the enhance-your-notes model. I put the full head-to-head — pricing, privacy postures, and which one wins for which kind of meeting — in this tested comparison of Otter and Granola, but the model question is the one to settle first, because it's upstream of every feature.

And the lesson for anyone building AI summarization: the cheapest way to make a summary feel smarter is often to capture the user's relevance signal, not to upgrade the model. A few human-typed bullets as a conditioning input beat a larger model summarizing cold, because the human already solved the hardest part — deciding what mattered. Design for that input and your "dumb" summarizer punches well above its weight.

If you've built a summarizer that captures relevance signal some other way — reactions, highlights, edits-as-feedback — I'd like to hear how in the comments.