\n\n\n\n Im Anxious About AIs Impact on Information Trust - AgntZen \n

Im Anxious About AIs Impact on Information Trust

📖 10 min read•1,807 words•Updated Apr 29, 2026

Hey there, folks. Sam Ellis here, back at agntzen.com. Today, I want to talk about something that’s been rattling around in my head a lot lately, especially as I watch the parade of new AI models and tools hitting the market. It’s not about the tech itself, not directly anyway. It’s about the subtle, often unseen, shift happening in our relationship with information, specifically how we *trust* what we see and hear. And honestly, it’s making me a little antsy.

We’re living in a time where the line between what’s real and what’s generated is blurrier than a photo taken with a potato. And it’s not just the deepfakes that get all the headlines. It’s the incredibly articulate, well-reasoned, and utterly fabricated text that AI models can churn out in seconds. This isn’t just a fun parlor trick anymore; it’s a fundamental challenge to how we, as agents in a complex world, form our understanding and make decisions. So, let’s dive into the quiet erosion of epistemic trust, and what we might do about it.

The Echo Chamber, Amplified by Artifice

Remember when we used to worry about echo chambers and filter bubbles? Those were the good old days, weren’t they? Back then, the problem was that we were only exposed to information that confirmed our existing biases, often because of algorithms designed to keep us engaged. Annoying, sure, but at least the information itself was generally presumed to be rooted in some form of human experience or fact, however skewed.

Now? We’re facing a new beast. Imagine your echo chamber, but now half the voices in it aren’t even human. They’re AI-generated personas, perfectly mimicking human speech, tone, and even emotional nuance. They can argue a point with an eloquence that would make a seasoned debater blush, cite sources (some real, some convincingly fake), and even generate “personal” anecdotes that never happened. The sheer volume and speed at which this manufactured discourse can be produced is staggering.

I saw a perfect example of this just last week. I was scrolling through a forum dedicated to sustainable urban planning, a topic I’m genuinely interested in. There was a long, incredibly detailed thread arguing against a specific zoning proposal in my city. The arguments were compelling, citing obscure historical precedents and economic impact studies. I was halfway through drafting a supportive comment when something felt… off. The language was almost too perfect, too consistent across multiple “users.” A quick reverse image search on some of the profile pictures led to stock photos, and a closer look at the “sources” revealed several links to non-existent white papers.

It was a coordinated campaign, likely run by a single agent using AI to generate a multitude of convincing, dissenting voices. And it was effective. People were genuinely engaged, genuinely concerned, and genuinely believing these generated arguments. That’s not just a filter bubble; that’s a reality distortion field.

The Silent Threat to Our Mental Models

Our brains are built to create mental models of the world. We take in information, process it, and integrate it into our understanding. This is how we learn, how we reason, and how we interact with our environment. For millennia, this process relied on the assumption that the information we received, whether through direct observation or communication with other humans, had some basis in reality, even if filtered through individual perspectives.

AI-generated content fundamentally challenges this assumption. When we’re constantly exposed to plausible but entirely fabricated information, our mental models start to get wobbly. How do we distinguish truth from fiction when the fiction is crafted to be indistinguishable from truth? This isn’t about being fooled once or twice; it’s about a continuous, low-level assault on our ability to discern what’s real.

Think about it. We’ve all used LLMs for various tasks, right? Drafting emails, brainstorming ideas, even summarizing complex documents. And they’re brilliant at it. But what happens when we start to rely on them not just for drafting, but for the fundamental information gathering itself? What if the summary it provides, while perfectly coherent, subtly misrepresents a key fact or omits a crucial nuance, not out of malice, but because its training data had a bias, or it simply hallucinated?

I experienced a mild version of this myself. I was researching a specific philosophical concept for a presentation. I asked a popular AI model to explain it, and it gave a wonderfully concise summary. I then asked for common critiques of the concept, and it provided three very articulate points. Feeling confident, I started building my presentation. Later, when I went back to the original academic texts, I found that one of the “common critiques” the AI had provided was actually a very niche interpretation, not widely discussed at all. It wasn’t wrong, per se, but it was presented as a mainstream viewpoint, which it wasn’t. My mental model of the concept, briefly, was skewed.

Practical Strategies for a Skeptical Age

So, what do we do about this? Are we doomed to a future where we can trust nothing? I don’t think so. But we need to become more active, more discerning agents in our own information consumption. Here are a few things I’ve been trying to incorporate into my own routine:

1. Embrace the “Digital Handshake” (or lack thereof)

When you encounter a piece of information online, especially one that elicits a strong emotional response or seems too perfect, pause. Ask yourself: who is the human behind this? Is there a human? Look for the digital equivalent of a handshake. Is there a clear author with a verifiable history? A real-world organization? A track record of publishing?

If you’re looking at a comment section, for instance, don’t just read the words. Look at the profile. How old is the account? What’s their post history like? Does it seem suspiciously consistent in tone or topic? Does it suddenly pivot from discussing cat videos to geopolitical analysis with expert precision?

This isn’t foolproof, of course. Sophisticated agents can create convincing fake profiles. But it’s a first line of defense.

2. Source Triangulation, with a Twist

We’ve always been told to check multiple sources. That advice is more critical than ever, but with a new caveat: actively seek out sources that are unlikely to be easily generated or manipulated by AI. This means prioritizing human-authored, human-edited, and human-vetted content.

  • Academic Papers: Peer-reviewed journals, while sometimes dense, still represent a high bar for human scrutiny.
  • Reputable Journalism (with a critical eye): Look for established news organizations with clear editorial processes. Even then, compare different outlets to understand various angles.
  • Direct Observation/Primary Sources: Can you find the original data, the original interview, the original document? This is the gold standard.
  • Human Experts: Engage with actual experts in the field, whether through their published works, lectures, or direct communication (if possible).

Here’s a quick example of what I mean. If I’m researching a new AI policy proposal, I won’t just ask an LLM it. I’d go to the official government website, read the actual proposal document. Then I’d look for analysis from a few different policy think tanks, ideally ones with established reputations and clear funding sources. Only then might I use an LLM to help me *synthesize* my understanding, but never to *replace* the direct engagement with primary and reputable secondary sources.

3. Cultivate “Information Hygiene” Tools

Just like we have antivirus software for our computers, we need tools and habits for our brains. Some of these are behavioral, some are technological.

  • Reverse Image Search: That “candid” photo of a politician doing something questionable? Run it through a reverse image search. You’d be surprised how often it turns out to be a stock photo or an image from an entirely different context.
  • Fact-Checking Sites: Organizations like Snopes, PolitiFact, and others are specifically designed to debunk misinformation. Use them. Don’t just take their word as gospel either, but understand their methodologies.
  • Critical Reading Skills: This one is old-school, but vital. Ask: What’s the agenda? Who benefits? What’s being left out? What assumptions is the author (or generator) making?

I’ve even started using a simple Python script to quickly check the age of a domain or look for suspicious patterns in text. Nothing fancy, just a few lines of code to automate some basic checks:


import whois
from collections import Counter

def check_domain_age(domain):
 try:
 w = whois.whois(domain)
 if w.creation_date:
 print(f"Domain '{domain}' created on: {w.creation_date}")
 else:
 print(f"Could not find creation date for {domain}")
 except Exception as e:
 print(f"Error checking domain {domain}: {e}")

def analyze_text_repetition(text, threshold=3):
 words = text.lower().split()
 word_counts = Counter(words)
 repeated_words = {word: count for word, count in word_counts.items() if count >= threshold}
 if repeated_words:
 print(f"Potentially repetitive words (appearing {threshold} or more times): {repeated_words}")
 else:
 print("No significant word repetition found.")

# Example usage:
# check_domain_age("example.com")
# analyze_text_repetition("This is a test. This is only a test. Is this a test?")

This isn’t going to catch every sophisticated AI agent, but it helps me flag things that might warrant a deeper look. The analyze_text_repetition function, for instance, can sometimes highlight patterns that feel a bit too algorithmic, a lack of natural variation in phrasing.

The Path Forward: Responsible Agency

The rise of AI-generated content isn’t going away. It’s only going to get more sophisticated, more pervasive. This isn’t a call to abandon AI; it’s a call to evolve our relationship with it. We need to shift from passive consumers of information to active, critical agents in our own understanding of the world.

My hope is that by talking about this, by sharing strategies, we can collectively build a more resilient approach to information. It’s about fostering a healthy skepticism, not a cynical distrust. It’s about empowering ourselves to make informed decisions, even when the digital landscape is designed to obscure the truth. Because ultimately, our ability to trust – in ourselves, in each other, and in the information we consume – is fundamental to navigating this wild, exciting, and sometimes unnerving future.

Actionable Takeaways:

  • Question the Source: Always ask, “Who (or what) created this information, and what is their motive?”
  • Verify, Verify, Verify: Don’t just read; cross-reference. Prioritize human-vetted sources.
  • Cultivate Digital Literacy: Learn to use tools and techniques (like reverse image search, domain checkers) to probe deeper.
  • Embrace Healthy Skepticism: It’s okay to be doubtful, especially when something seems too good, too bad, or too perfectly articulated to be true.
  • Talk About It: Share your experiences and strategies with others. The more aware we all are, the better equipped we’ll be.

đź•’ Published:

✍️
Written by Jake Chen

AI technology writer and researcher.

Learn more →
Browse Topics: Best Practices | Case Studies | General | minimalism | philosophy
Scroll to Top