\n\n\n\n How AI Models Are Changing My Internal Monologue - AgntZen \n

How AI Models Are Changing My Internal Monologue

📖 9 min read1,623 wordsUpdated May 4, 2026

Alright, let’s talk about something that’s been rattling around in my head lately, especially with all the new AI models dropping faster than I can update my RSS feeds. We’re well past the “wow, it can write poetry!” phase and deep into “wait, what exactly is it doing to my thoughts?” territory. I’m talking about the subtle, insidious way large language models (LLMs) are beginning to shape our internal monologues, our decision-making processes, and frankly, our very sense of self-agency.

My angle today isn’t about the grand philosophical debates of AI consciousness or the singularity – those are for another time, probably over a strong coffee. Instead, I want to zero in on something much more immediate and personal: how the increasing ubiquity of AI-generated text, particularly in information retrieval and content creation, is subtly eroding our capacity for original thought and independent judgment. Call it the “AI Echo Chamber of the Mind.”

The Algorithmic Whispers in Our Heads

I’m a tech blogger, right? So naturally, I spend a lot of time poking at new tools. A few months back, I was trying to figure out the best way to structure some data for a small personal project – nothing groundbreaking, just a little script to manage my ever-growing collection of esoteric philosophy texts. My usual process would involve sketching out a few ideas, maybe hitting Stack Overflow for some common patterns, and then just diving into the code, letting the problem itself guide me.

This time, though, I decided to “optimize” my workflow. I fed my problem statement into a couple of different LLMs, asking for recommendations on database schemas, API design, and even specific Python library choices. And you know what? They gave me perfectly reasonable answers. Coherent, well-structured, and often quite elegant. I copied some of their suggestions, tweaked a few things, and got my little project off the ground much faster than usual.

But something felt…off. Later that week, as I was reviewing the code, I realized I hadn’t really thought through some of the core architectural decisions. I had outsourced the initial ideation, the conceptual heavy lifting, to an algorithm. My internal dialogue, which usually involves a fair bit of “what if I did it this way?” and “no, that’s stupid, try this,” was largely absent. It was replaced by a kind of passive acceptance of the AI’s “good enough” answer.

This isn’t just about coding, of course. Think about how many people now start their research, their writing, their brainstorming sessions by prompting an LLM. We ask it for summaries, for outlines, for pros and cons lists. And the AI delivers, often with remarkable fluency. The danger isn’t that the AI is wrong (though it certainly can be); the danger is that it’s *too right*, too often, in a way that bypasses our own critical faculties.

When “Good Enough” Becomes the Enemy of Great

The human brain, for all its quirks, thrives on wrestling with problems. That struggle, that internal debate, that process of forming connections and evaluating alternatives, is what builds understanding, intuition, and ultimately, wisdom. When we delegate that initial ideation phase to an AI, we’re not just saving time; we’re also short-circuiting a crucial cognitive process.

It’s like having a personal trainer who just tells you to do 10 push-ups, 10 sit-ups, and 10 squats every day, without ever explaining *why* or encouraging you to explore different exercises or understand your own body’s limits. You’ll get stronger, sure, but you won’t develop the deep understanding of fitness that comes from self-experimentation and reflection.

In the context of agency, this is particularly troubling. Our ability to act meaningfully in the world depends on our capacity to form our own intentions, to develop our own plans, and to execute them based on our own considered judgments. If our initial thoughts and frameworks are increasingly supplied by an external, non-sentient source, how truly “ours” are those subsequent actions?

Consider a simple example: a blog post outline. Before LLMs, I might sit down with a blank document and a cup of tea, jotting down disconnected ideas, trying to find a flow, maybe even sketching a mind map. It’s messy. It’s inefficient. But it’s *mine*. Every heading, every bullet point, represents a tiny act of creation and organization that springs from my own mental landscape.

Now, I can prompt an LLM: “Give me an outline for a blog post about the erosion of agency by LLMs, focusing on internal monologue and decision-making.” And boom, I get something like this:


1. Introduction: The Subtle Influence of AI
 a. Beyond the Hype: Personal Impact
 b. Thesis: Erosion of Original Thought
2. The Algorithmic Whispers
 a. Personal Anecdote: Coding Project
 b. The "Optimization" Trap
3. The Cognitive Cost of Convenience
 a. Bypassing Critical Faculties
 b. Analogy: Personal Trainer
4. Reclaiming Our Mental Terrain
 a. Deliberate Friction
 b. Practical Strategies
5. Conclusion: A Call to Conscious Engagement

It’s… fine. It’s a perfectly adequate outline. But if I just take it and start writing, I’ve skipped the crucial step of internalizing and structuring the argument myself. I’ve been handed a map instead of learning to navigate. And over time, if this becomes my default, my internal compass for structuring information might weaken.

Reclaiming Our Mental Terrain: Strategies for Deliberate Friction

So, what do we do? Do we just swear off LLMs entirely? That’s probably unrealistic and unhelpful. They’re powerful tools. But like any powerful tool, they demand conscious, intentional use. We need to introduce “deliberate friction” back into our creative and cognitive processes.

1. Start Blank, Then Consult

This is probably the most straightforward advice. When you have a problem to solve, an idea to explore, or a piece of content to create, start with a blank page. Spend at least 15-30 minutes, or even an hour, wrestling with it yourself. Brainstorm, free-write, sketch, outline – whatever your personal method is. Get your own initial thoughts down, however incomplete or messy they may be.

Then, and only then, bring in the LLM. Use it as a sounding board, a second opinion, or a tool for expansion. For instance, if you’ve written an initial paragraph, ask the AI to suggest alternative phrasing, or to elaborate on a specific point you’ve already made. This way, the AI is augmenting *your* initial thought, not replacing it.

Practical Example: Brainstorming Session

Instead of:

  • Prompt: “Give me 5 ideas for a new blog post series on agent philosophy.”

Try:

  • Yourself: Jot down 3-5 rough ideas first. “Agency in digital spaces,” “ethical dilemmas of AI assistants,” “the nature of choice in algorithmic worlds.”
  • Then Prompt: “I’m thinking about a blog post series on agent philosophy. My initial ideas are [your ideas]. Can you suggest ways to develop these, or offer 2-3 completely different angles that build on these themes?”

2. Treat AI Output as a Starting Point for Critique, Not a Destination

When an LLM gives you an answer, resist the urge to simply accept it. Approach it with a critical eye, as if it were a draft submitted by a junior colleague. Ask yourself:

  • Is this truly the best way to say this?
  • Are there alternative perspectives or counter-arguments missing?
  • Does this align with my own values and understanding?
  • What specific assumptions is the AI making here?

Challenge its assertions. Probe its logic. Even if the output is factually correct, the process of questioning it strengthens your own analytical muscles.

Practical Example: Code Review

If an LLM suggests a code snippet, don’t just copy-paste. Run it. More importantly, step through it mentally. Consider edge cases. Think about maintainability. Ask the AI itself to explain its choices, and then evaluate those explanations.


# AI suggested this function for parsing a log file
def parse_log_entry(line):
 parts = line.split(',')
 if len(parts) == 3:
 return {'timestamp': parts[0], 'level': parts[1], 'message': parts[2]}
 return None

# My critical thought process:
# - What if a message contains a comma? This will break.
# - What if there are leading/trailing spaces? Need to strip.
# - What if the timestamp isn't in a consistent format?
# - Is 'None' the best return for invalid lines, or should it raise an error?

# Then I might prompt the AI again:
# "The `parse_log_entry` function you suggested might fail if a message contains commas. How would you modify it to handle comma-separated values within the message field, assuming the timestamp and level are always the first two elements and wrapped in quotes?"

3. Cultivate Intellectual Discomfort

This might sound counter-intuitive in a world obsessed with efficiency and frictionless experiences. But growth often happens at the edges of our comfort zone. Actively seek out tasks that require you to think deeply and independently, even if they seem slower or more difficult at first.

Read challenging books without summaries. Write a lengthy analysis without consulting an LLM for structural ideas. Engage in debates where you don’t immediately know the “right” answer. Embrace the struggle of synthesizing complex information yourself. This is how we train our internal agents to be robust, resilient, and truly independent.

Our agency isn’t just about making choices; it’s about the very process of forming the intentions and understanding the world that informs those choices. If we let algorithms do too much of that foundational work, we risk becoming passengers in our own minds, merely echoing the algorithmic whispers rather than forging our own unique voice.

The future of human agency in an AI-saturated world isn’t about avoiding AI; it’s about mastering the art of using it as a tool without letting it become the architect of our thoughts. It’s about remembering that the most profound insights often emerge not from immediate answers, but from the deliberate, sometimes painful, process of internal wrestling.

Let’s keep our minds messy, vibrant, and fiercely our own.

🕒 Published:

✍️
Written by Jake Chen

AI technology writer and researcher.

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