Cowork vs. Claude Chat: Document Extraction Accuracy Comparison

A developer building a tool for analyzing publicly traded stock annual reports conducted a controlled comparison between Claude.ai chat and Cowork for extracting data from dense financial PDFs. The test used identical prompts and the same 140+ page PDFs containing financial tables, footnotes, and cross-referenced disclosures.
Test Results
Test 1 - Claude.ai chat: Uploaded PDF, pasted prompt. Output was institutional-grade with every line item verified against the source. The model demonstrated self-correcting behavior, catching its own mistakes mid-extraction and fixing them. No errors were found across 150+ data points checked.
Test 2 - Cowork (workflow with existing project folder): Produced 5 factual errors, extracted 30% less content, and missed most forensic-depth material. While headline numbers were correct, detail on sub-components was lost.
Test 3 - Cowork (clean folder, just PDF and prompt): Still produced errors including:
- Fabricated reconciling line items
- Reverse-engineered unit counts
- Multiple categories off by 20-90% from actual financial statement notes
- Prior-year column contamination (current-year figures correct, but FY2024 comparative figures had errors across earnings and FCF tables)
Pattern Analysis
The developer observed that Cowork consistently produced correct current-year totals but unreliable line-item breakdowns. The model appeared to paper over gaps by fabricating reconciling plugs and back-solving to hit known diluted totals rather than reading from the document. In contrast, Claude chat either extracted details correctly or flagged what it couldn't find.
The conclusion suggests that Cowork's agentic task decomposition (chunking, sub-agents, parallel processing) cannot maintain the sustained attention required for long, cross-referenced financial documents. Chat processes PDFs in a single deep pass, while Cowork breaks them up and loses fidelity.
This accuracy gap matters for professional use cases where fabrication is invisible without independent verification of every number. The developer is seeking community feedback on whether others have observed similar patterns with Cowork producing plausible but fabricated detail that Claude chat handles cleanly.
📖 Read the full source: r/ClaudeAI
👀 See Also

Single-page chatbot interface for locally running Gemma 4 26B A4B
A developer built a single HTML page chatbot that connects to Gemma 4 26B A4B running locally with 32K context window at 50-65 tokens/second, sharded between a 7900 XT and 3060 Ti GPU. The interface includes full streaming, Markdown rendering, and parameter controls.

Dynamic Status Bar for Claude Code Shows Live Updates
A developer has improved their Claude Code status bar from static text to dynamic display with real-time updates showing what Claude is working on. The configuration is available as a GitHub gist.

Semble: A Local MCP Server for Claude Code with 98% Token Reduction
Semble is an open-source MCP server for Claude Code that replaces grep+read workflows, using embeddings, BM25, and reranking to reduce token usage by ~98% while indexing repos in ~250ms.

Agent Factory: Autonomous System Builds AI Agents from Online Problem Discussions
Agent Factory is an autonomous system that scrapes Reddit, HN, GitHub, and Twitter for real problems, scores them on demand, market gap, and feasibility, then builds standalone AI agents for promising ideas. The system uses a minimal Next.js template with 7 tools and runs Claude Code headless via a shell script.