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

推荐订阅源

D
DataBreaches.Net
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
腾讯CDC
博客园 - Franky
Engineering at Meta
Engineering at Meta
C
Check Point Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学

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
The 7 Types of AI Reasoning That Will Reshape Knowledge Work
The Pragamat · 2026-04-27 · via DEV Community

Most people still think AI is about better answers. That phase is already behind us. What is emerging now is something fundamentally different: AI that reasons. Systems that do not just respond to prompts, but break problems into steps, explore alternatives, take actions, and refine decisions over time.

1. Making Reasoning Visible

Chain-of-Thought

At its core, chain-of-thought reasoning is straightforward: instead of jumping straight to an answer, the model walks through the problem one step at a time. Research has shown that explicitly prompting models to reason this way dramatically improves accuracy on complex tasks.

In enterprise terms, this is the difference between a system that guesses and one that behaves like a junior analyst. It shows its work, exposes its assumptions, and makes every step auditable.

Chain-of-Thought<br>

Example Prompt

Role: Senior Financial Analyst
Goal: Evaluate profitability trend

Process:
1. Calculate revenue growth %
2. Calculate cost growth %
3. Compute margin change
4. Interpret trend

Output: Step-by-step reasoning, then a 2-line conclusion.
Data: Revenue: 2M → 3M | Costs: 1.2M → 1.8M

Enter fullscreen mode Exit fullscreen mode

2. Exploring the Decision Space

Tree-of-Thought

Real-world decisions rarely have one path. Tree-of-thought reasoning lets AI explore multiple approaches, evaluate each one, and then converge on the best option. This is how architects think when weighing design options. AI can now simulate that same process, systematically and at scale.

Instead of committing to the first plausible answer, the model generates and scores competing strategies before recommending one.

Tree-of-Thought

Example Prompt

Role: Enterprise Architect
Goal: Recommend migration strategy

Process:
1. Generate 3 approaches
2. Score each on: complexity, risk, time-to-value
3. Recommend best option with justification

Output: Comparison table + final recommendation

Enter fullscreen mode Exit fullscreen mode

3. Reasoning That Takes Action

ReAct Reasoning

This is where AI stops being passive. In ReAct, the system reasons about a problem, takes a concrete action like querying logs or calling an API, observes what it finds, and keeps iterating until it reaches a confident answer.

This is the foundation of truly agentic systems. Not ones that suggest what to do, but ones that actually do the work.

ReAct Reasoning

Example Prompt

Role: AI DevOps Engineer
Goal: Identify root cause of latency spike

Loop:
1. Think: list possible causes
2. Act: query logs or metrics
3. Observe: analyze what you find
4. Refine: update your hypothesis
5. Repeat until confident

Output: Root cause + evidence + recommended fix

Enter fullscreen mode Exit fullscreen mode

4. Catching Its Own Mistakes

Self-Reflection

One of the biggest reliability breakthroughs in recent AI research comes from a simple idea: make the model critique itself. Instead of trusting the first answer, the system generates an output, reviews it critically, identifies weaknesses, and then rewrites.

This is how you meaningfully reduce hallucination in production systems. A second pass is not a luxury. It is the mechanism.

Self-Reflection

Example Prompt

Role: Compliance Analyst
Goal: Identify risks in contract

Process:
1. Generate initial risk analysis
2. Critique: what risks are missing? Where is reasoning weak?
3. Improve based on your critique
4. Produce the final version

Focus: Legal and regulatory risk only

Enter fullscreen mode Exit fullscreen mode

5. Grounded in Your Company's Truth

Retrieval-Augmented Reasoning

In enterprise environments, reasoning without data is useless. Retrieval-augmented generation ensures the model retrieves relevant documents first, then reasons over them rather than relying on general training knowledge.

This is how you move from "AI guesses" to "AI grounded in facts the organization actually holds."

Retrieval-Augmented Reasoning<br>

Example Prompt

Role: Enterprise Knowledge Assistant
Goal: Answer policy question

Constraints:
- Use only the retrieved documents
- If not found, say "Not found in our records"
- Do not infer beyond the given context

Output: Answer with source references

Enter fullscreen mode Exit fullscreen mode

6. Teams of Specialized Agents

Multi-Agent Reasoning

Instead of one model doing everything, multiple specialized agents collaborate, each with a defined role. Research shows this improves performance significantly on complex, multi-step workflows.

This is where the future team structure starts to change. The question is not whether AI will work alongside humans, but how that coordination gets designed.

Multi-Agent Reasoning<br>

Example Prompt

System: Multi-Agent Workflow

Planner: Break goal into tasks
Research: Gather technical and business inputs
Validator: Check feasibility, risks, compliance
Executor: Produce final architecture design

Goal: Design a scalable payment processing platform

Enter fullscreen mode Exit fullscreen mode

7. Starting From the Outcome

Goal-Oriented Planning

The most powerful form of AI reasoning begins with a goal and works backward. The system decomposes objectives into phases, maps out tasks and dependencies, identifies risks, and produces an execution plan.

This is where AI starts operating less like a tool and more like a program manager. Not just answering questions, but figuring out what needs to happen and in what order.

Goal-Oriented Planning

Example Prompt

Role: AI Program Manager
Goal: Launch AI-powered customer support system

Process:
1. Break goal into phases
2. Break phases into tasks
3. Identify dependencies
4. Flag risks
5. Create timeline

Output: Phased roadmap, task breakdown, risk register

Enter fullscreen mode Exit fullscreen mode

We are no longer building systems that execute instructions. We are designing systems that reason about problems. And once systems start reasoning, they do not just support your teams. They start replacing parts of how those teams operate.

Satish Gopinathan is an AI Strategist, Enterprise Architect, and the voice behind The Pragmatic Architect. Read more at eagleeyethinker.com or Subscribe on LinkedIn.

ArtificialIntelligence, AI, GenerativeAI, AgenticAI, AIReasoning, EnterpriseArchitecture, DigitalTransformation, FutureOfWork, AIAgents, LLMOps, Innovation