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

推荐订阅源

Y
Y Combinator Blog
博客园 - 叶小钗
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
N
Netflix TechBlog - Medium
B
Blog
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理

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
Why Your Prompt Is Only 5% of What the Model Sees
Abhijeet Hiwale · 2026-06-22 · via DEV Community

Abhijeet Hiwale

Most developers think they're prompting AI. They're actually injecting a tiny message into a much larger machine — and the machine is mostly running without them.

Here's the uncomfortable math: in production AI systems, the user's actual prompt is often less than 5% of the total context sent to the model. The other 95%? System instructions, retrieved documents, conversation history, injected data, tool results, and examples the developer constructed before your message even arrived.

This distinction has a name: context engineering. And if you don't understand it, you'll keep blaming the model for problems that are actually yours.


What the model actually sees

When you type a message into ChatGPT or any AI product, you're not talking directly to the model. You're contributing to a larger document — the full context window — that gets assembled behind the scenes before any inference happens.

Here's a simplified version of what that looks like for a tool like Cursor when a developer types seven words — "Add error handling to this function":

[System prompt: You are an expert software engineer. Write clean, production-ready code. Follow the existing coding style...]
[Current file: 500-2000 tokens of your code]
[Related files: 300-1000 tokens of imports, types, interfaces]
[Project structure: This is a TypeScript/Next.js project using Prisma ORM]
[Recent edits: what you changed in the last 5 minutes]
[Error messages: current terminal output]
[User message: "Add error handling to this function."]

Total context: 2,000–5,000 tokens. Your message: 7 words.

That's why Cursor writes code that actually fits your project — correct imports, matching style, right error types. The model itself isn't smarter. The context construction is.


Five layers that actually shape the output

Working through an ML cohort recently, one framework stuck with me as genuinely useful — breaking context down into five layers. Each one narrows the probability space the model draws from.

Layer 1: Role. Tell the model who it is. "You are a senior backend engineer" shifts vocabulary, depth, and assumptions. The model draws from patterns in its training data that match that role.

Layer 2: Task. Be specific about what you want. "Give me 3 options with tradeoffs" is different from "explain this." The model needs the shape of the output before it can produce a good one.

Layer 3: Knowledge. This is the most powerful layer. Inject context the model doesn't have — your codebase, your domain, your constraints. A model with your specific context beats a bigger model with a generic prompt every time.

Layer 4: Format. Define the structure. Bullet points, max two sentences each, with an example. The model is trained on millions of formatted documents and follows formatting instructions precisely.

Layer 5: Constraints. Say what you don't want. "No generic advice. No paid ads. Only approaches that work for developer tools." This eliminates the parts of the probability space you're not interested in.

The difference between a prompt that uses zero of these layers and one that uses all five isn't incremental. It's the difference between a model averaging across all possible responses to a topic versus drawing from a small, highly relevant slice.


Context narrows probability space comparison

The same model, completely different behavior

Here's the thing that took a while to internalize: the model's weights don't change. What changes is the context.

Claude, for example, has a system prompt you never see — a set of behavioral instructions baked in before your message arrives. That's what shapes its honesty about uncertainty, its tendency to show reasoning, its refusal to make things up. Change the system prompt, change the behavior. Same model, same parameters, completely different assistant.

This is also why the same base model powers completely different products. The AI that answers your customer support query and the AI that writes your code are often the same underlying model with different context construction.

Coming from a backend engineering background — building APIs, managing microservices, writing systems where every component is traceable — this framing clicked immediately. Context engineering is just configuration. The model is the runtime. What you inject determines what runs.


What this means practically

If your AI feature is producing mediocre output, the default move is to reach for a bigger model or a better prompt. Most of the time, the actual fix is in the context you're constructing.

Before upgrading the model, ask:

  • What does the model actually see when a request arrives?
  • Is the relevant context being retrieved and injected, or assumed?
  • Are the role, task, format, and constraints explicitly defined — or left for the model to guess?

RAG systems are essentially automated context engineering. Instead of manually figuring out what the model needs to know, you retrieve it dynamically from a vector database and inject it into the prompt. The model's job stays the same — next-token prediction over whatever it sees. The engineering work is in making sure it sees the right things.


The shift from "prompt engineering" to "context engineering" sounds like semantics. It's not. Prompt engineering treats the user's message as the thing to optimize. Context engineering treats the entire input — everything the model sees — as the system to design.

That reframe changes what you build, what you debug, and what you blame when something goes wrong.

Lets connect on LinkedIn : https://www.linkedin.com/in/abhijeethiwale/