/* Loops Blog — "I find it easier to talk to ChatGPT than I ever found it to talk to a therapist" Authored editorial post by Matt Humphreys. Same blog template. Internal cross-links plus external sources opening in a new tab. UK English, no em dashes. */ const BAI_LINK = "text-brand-deep font-semibold hover:underline"; /* ---------------- Page nav ---------------- */ const BAI_NAV_LINKS = [ { label: "For ADHD", href: "ADHD With Loops.html" }, { label: "Knowledge Hub", href: "ADHD Knowledge Hub.html" }, { label: "Blog", href: "Blog.html" }, { label: "The AI coach", href: "AI Coach.html" }, ]; const BaiNav = () => { const [open, setOpen] = React.useState(false); const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 8); onScroll(); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); React.useEffect(() => { if (!open) return; const onKey = (e) => e.key === "Escape" && setOpen(false); document.body.style.overflow = "hidden"; document.addEventListener("keydown", onKey); return () => { document.body.style.overflow = ""; document.removeEventListener("keydown", onKey); }; }, [open]); return (
Loops
); }; /* ---------------- Hero ---------------- */ const BaiHero = () => (
Loops Blog

I find it easier to talk to ChatGPT than I ever found it to talk to a therapist.

{/* Byline */}
Matt Humphreys
Matt Humphreys
Loops
Skip to the sources

I want to be honest about something, because I think a lot of you will recognise it.

); /* ---------------- Opening ---------------- */ const BaiOpening = () => (

I talk to AI. Properly talk to it. Not just "write me an email" or "summarise this document". I mean late at night, when my head is full and won't empty, I open ChatGPT and I talk things through. What's on my mind. What I'm avoiding. What actually matters this week versus what just feels loud. I use it to prioritise when everything feels like a priority, which, if you have an ADHD brain like mine, is most days.

And here's the thing I've stopped being embarrassed about. It helps.

); /* ---------------- Not the only one ---------------- */ const BAI_STATS = [ { n: "1 in 3", d: "UK adults have used AI for emotional support, companionship or social interaction in the past year.", href: "https://www.aisi.gov.uk/blog/5-key-findings-from-our-first-frontier-ai-trends-report", src: "AI Security Institute" }, { n: "64%", d: "of 25 to 34 year olds have used a chatbot to support their mental health or wellbeing.", href: "https://mentalhealth-uk.org/news-and-insights/over-one-in-three-using-ai-chatbots-for-mental-health-support-as-charity-calls-for-urgent-safeguards/", src: "Mental Health UK" }, { n: "23%", d: "of under-30s have told an AI something they've never told another human being.", href: "https://yougov.com/en-us/articles/55093-one-in-five-american-adults-under-30-say-they-have-had-an-ongoing-personal-friendship-with-an-ai-chatbot", src: "YouGov" }, ]; const BaiNotAlone = () => (
Apparently I'm not the only one

It turns out it's not unusual at all.

For a long time I assumed this was a slightly odd private habit. Then I started reading the research.

{BAI_STATS.map((s) => ( ))}

That first one is a government body's figure, not a tech company's. But the stat that really stopped me was this one. In a big European study of young people, 51% said it was easy to talk to a chatbot about their mental health. Only 37% said the same about a psychologist.

A chatbot beat the professionals. On openness. The one thing the whole profession is built on.

When I read that, I didn't think "how worrying". I thought, yes. That's exactly right. That's been my experience too.

); /* ---------------- Why it's easier ---------------- */ const BAI_EASIER = [ { t: "There's no waiting room", b: "No six-week wait, no intake form, no explaining yourself from the beginning to a stranger while watching the clock. It's there at 11pm on a Tuesday, which is when my brain actually wants to talk, not at 2pm on a Thursday in three weeks' time." }, { t: "There's no judgement", b: "Or more precisely, there's no fear of judgement, which is the thing that actually shuts people up. You can say the messy version. The unflattering version. The version you'd edit before saying it to a person you have to look in the eye." }, { t: "You never feel like a burden", b: "I think that one's bigger than we admit." }, ]; const BaiWhyEasier = () => (
Why it's easier

I've thought about this a lot, because the answer matters.

{BAI_EASIER.map((c) => (

{c.t}

{c.b}

))}
); /* ---------------- The therapy that didn't work ---------------- */ const BaiTherapy = () => (
The therapy that didn't really work for me

I did it properly. It still didn't land.

Years ago, I did CBT for depression. The sessions, the worksheets, the thought records, challenging the cognitive distortions, all of it. And I want to be fair here, CBT genuinely helps a lot of people, and the evidence for it is real.

But it never really worked for me. I'd sit there performing recovery, saying the things I knew were the right things to say, and leave feeling like I'd completed an admin task rather than moved anything. Maybe it was the fit. Maybe it was me. Maybe it was that opening up to a person across a room, on a schedule, has a cost that my particular brain was never willing to fully pay.

What actually got me out of depression was something completely different. Perhaps I'll share that another day. The point, for now, is this. I know first-hand what it's like when the standard route doesn't land, and how badly you'll reach for anything that meets you where you actually are. Right now, for millions of people, the thing that meets them where they are is a chatbot.

); /* ---------------- Where I stop being relaxed ---------------- */ const BaiRisk = () => (
And that's where I stop being relaxed about it

Here's the other half of the data.

It's the half that shaped what we built with Loops.

It really is easier to open up to AI. And most AI was never built to be opened up to.
); /* ---------------- What we did ---------------- */ const BaiWhatWeDid = () => (
What we did about it with Loops

Easy to talk to, and safe to talk to.

I won't turn this post into a pitch, but I'll tell you the principle, because it comes directly from everything above.

The AI in Loops coaches. We named it Dora. It helps you find ideas, prioritise, build momentum, get past a stuck moment. The things I was using ChatGPT for at 11pm, except Dora already knows your goals and it talks in short cards an ADHD brain can actually take in.

And it knows where the line is. Dora will never diagnose. It doesn't roleplay as a therapist. There's a moment when knowledge is not enough and what someone needs is a trained human, and we've worked incredibly hard to know exactly where that moment is. If you're ever in real distress, Loops stops coaching entirely and does one thing. Gets you to human help.

I don't think we should have to choose between the two.

And none of this replaces actual humans. Some of the most useful conversations I've had about my own brain happened at ADHD events, in rooms and calls full of people who didn't need anything explained. If talking is the thing that helps you, that's another place to do it.

If you're struggling right now, please talk to someone.

); /* ---------------- Sources ---------------- */ const BAI_SOURCES = [ { t: "AI Security Institute, Frontier AI Trends Report", d: "33% of UK adults used AI for emotional purposes in the past year; around 60% of that use is on general-purpose chatbots (Dec 2025)", href: "https://www.aisi.gov.uk/blog/5-key-findings-from-our-first-frontier-ai-trends-report" }, { t: "Mental Health UK / Censuswide", d: "37% of UK adults have used a chatbot for mental health or wellbeing, rising to 64% among 25 to 34s; 11% report receiving harmful information around suicide (Nov 2025)", href: "https://mentalhealth-uk.org/news-and-insights/over-one-in-three-using-ai-chatbots-for-mental-health-support-as-charity-calls-for-urgent-safeguards/" }, { t: "YouGov, on Pew Research Center data", d: "23% of US adults under 30 have confided in an AI chatbot something they'd told no one else (2026)", href: "https://yougov.com/en-us/articles/55093-one-in-five-american-adults-under-30-say-they-have-had-an-ongoing-personal-friendship-with-an-ai-chatbot" }, { t: "Ipsos BVA for CNIL and Groupe VYV, reported by Futura-Sciences", d: "51% of young Europeans (11 to 25) find it easier to discuss mental health with a chatbot than with a psychologist (37%) (early 2026)", href: "https://www.futura-sciences.com/en/british-health-system-officially-validates-chatbot-to-replace-psychologists_34329/" }, { t: "American Psychological Association, Chatbots and Mental Health Survey", d: "97% of licensed psychologists worry chatbots may reinforce harmful beliefs; 89% worry they may inadvertently encourage self-harm (June 2026)", href: "https://www.apa.org/news/press/releases/2026/06/patients-chatbots-mental-health" }, ]; const BaiSources = () => (
Sources

Where this comes from.

); /* ---------------- Author bio ---------------- */ const BaiAuthorBio = () => (
Matt Humphreys
Written by

Matt Humphreys

Loops

Matt has worked in design and marketing for 14 years and is fascinated by how AI will shape the future of both. Diagnosed with ADHD in his early thirties, he writes and researches the ideas that help him better understand his own brain.

At Loops, Matt helps train the AI coach, speaks with users and shapes the app around how people with ADHD actually think and work. It's the kind of tool he wishes he'd had years before his diagnosis.

Outside work, Matt lives with his wife, dog and cat, grows pine trees and dreams of one day owning a patch of land to plant them on.

); /* ---------------- App ---------------- */ function BaiApp() { return (
); } const baiRoot = ReactDOM.createRoot(document.getElementById("root")); baiRoot.render();