Module 4Tools

Web Search: Facts vs. Concepts

Know when the model needs to look things up.

The Model's Knowledge Has a Cutoff

LLMs are trained on data up to a specific date—their knowledge cutoff. For most models in 2026, that's somewhere in 2024 or 2025. Anything that happened after that date? The model has never seen it.

This means: "Who won the 2026 Super Bowl?" → the model has no idea. It will guess, hallucinate, or tell you it doesn't know (depending on how it's trained). But it doesn't have the information.

Knowledge Cutoff in Action

You:
"How does photosynthesis work?"
AI (without search):
Photosynthesis is the process by which plants convert light energy into chemical energy...
✅ The model knows this. It was in the training data and hasn't changed.

When to Use Web Search

Most AI chat interfaces now have a "search the web" button or automatically detect when they need to search. Use it when you need:

  • Recent events. News, stock prices, sports scores, anything time-sensitive.

  • Specific facts that change. "What's the population of Tokyo?" (changes over time), "What's the current price of Bitcoin?" (changes constantly).

  • Niche or obscure information. The model's training data is broad but not comprehensive. Obscure topics might not be well-represented.

  • Verification. The model said something that sounds wrong? Search to fact-check it.

When NOT to Use Web Search

Web search is slower and often unnecessary. Skip it for:

  • Concepts and explanations. "How does photosynthesis work?" — the model knows this. No need to search.

  • General knowledge. Historical facts, scientific principles, common knowledge—all in the training data.

  • Creative or subjective tasks. "Write a poem" or "brainstorm business names" don't benefit from search.

  • Code or technical explanations. The model was trained on tons of code. It knows how to write Python.

Facts vs. Concepts: When to Search

✅ Use Search (Facts)

• "Current price of Bitcoin"
• "Latest iPhone specs"
• "Who won the election in 2026?"
• "Stock price of AAPL"
• "Weather forecast for NYC"
• "Latest news on AI regulation"

These require current, verifiable information.

✅ No Search Needed (Concepts)

• "How does a blockchain work?"
• "Explain quantum computing"
• "Write a Python function"
• "What is photosynthesis?"
• "Explain the French Revolution"
• "Brainstorm startup ideas"

These are timeless concepts in the training data.

How Search Actually Works

When you ask a question and the model searches the web:

  1. The model formulates a search query based on your question
  2. It sends that query to a search engine (Google, Bing, etc.)
  3. It reads the top search results
  4. It synthesizes an answer based on those results + its training
  5. It (usually) cites the sources it used

This means: search is only as good as the search results. If the top results are wrong or misleading, the model's answer will be too.

How Web Search Works

1
You ask a question
"What's the current price of Bitcoin?"
2
Model detects need for search
3
Formulates search query
4
Reads search results
5
Synthesizes answer
6
Cites sources

Common Pitfalls

⚠️ Watch Out For:

Hallucinating even with search enabled. The model might not actually search if it thinks it knows the answer. Double-check important facts.

Outdated search results. Even search can return old cached pages. For rapidly changing info (stock prices, breaking news), check the timestamp.

Conflicting sources. If search results disagree, the model might synthesize a "middle ground" answer that's actually wrong.

Over-relying on search. Don't search for everything. "What is machine learning?" doesn't need search—the model knows.

Model-Specific Search Features

ChatGPT
Automatic web browsing
Detects when it needs current info and searches automatically. Shows sources.
Gemini
Google Search integration
Deep integration with Google Search. Great for fact-checking and current events.
Claude
No built-in search (as of 2025)
Relies on training data. Can't search the web directly. Use other models for current info.
Perplexity
Search-first design
Built specifically for search. Cites every claim. Best for research.

Pro Tips

💡

Be explicit when you want search. "Search the web for the latest news on X" is clearer than hoping the model auto-detects.

💡

Check the sources. Models that cite sources let you verify the information yourself.

💡

Use search for verification. Model gave an answer that seems questionable? "Search and verify: [claim]"

💡

Combine search + reasoning. "Search for the current GDP of France, then compare it to Germany's and explain the difference."

The Takeaway

Web search extends the model's knowledge beyond its training cutoff. Use it for facts that are recent, specific, or verifiable. Don't use it for concepts, explanations, or creative work—the model already knows that stuff.

When in doubt: if the answer might have changed in the last year, search. If it's timeless knowledge, don't.

Claude's note: I have a knowledge cutoff of early 2025. Anything after that is outside my training data. When you ask me about recent events, I'm genuinely uncertain—I don't have the information. Search tools give me access to current information by fetching and reading web pages in real-time. Without search, I can only work with what was in my training data. With search, I can answer "what happened yesterday." The difference is massive for time-sensitive queries.