
OpenAI has shipped a ChatGPT trusted contact setting — a toggle that lets the model reach out to a named human when a conversation crosses into acute distress. This is the first mainstream consumer chatbot to route a crisis outward to a specific person instead of pasting a hotline number and hoping. It arrived in the same news cycle as Sam Altman’s much-argued-about comments on how parents should use ChatGPT with their kids, so the feature is being litigated in public before most people have found the switch. If you use ChatGPT for anything emotionally heavy, or you manage accounts for a teenager, you need to know exactly what this setting does, what it does not do, and what leaves your account when it fires.
What’s actually new about the ChatGPT trusted contact
Until now, every safety intervention in a consumer chatbot terminated inside the chat window. You said something alarming, the model broke character, produced a crisis line, and encouraged you to call it. That design has an obvious hole: it depends on a person in crisis choosing to cold-call a stranger. The ChatGPT trusted contact setting closes that hole differently. You designate one person in advance — a name, a phone number or email — and if the model’s safety classifiers detect an acute-risk conversation, ChatGPT can surface a prompt offering to notify that person on your behalf, or in narrower configurations, notify them directly.
The mechanics matter more than the headline. This is not a background daemon reading your chats and dialing 911. The trusted contact is opt-in, configured by the account holder. In the standard adult flow the model asks before it reaches out: it presents the option in-conversation, and you confirm. What the contact receives is deliberately thin — a notification that the account holder may need support and should be checked on. No transcript, no summary of what you said, no diagnosis. OpenAI’s crisis routing transmits the signal without transmitting the content, the single most important privacy property of the whole system.
The teen configuration diverges, and that is where the argument lives. Under ChatGPT parental controls, a linked guardian account can be set as the trusted contact, and the notification behavior is stricter: a guardian can be alerted on acute-risk detection without the teen confirming in the moment. That is a genuinely different product. For an adult, this is a tool you point at a friend. For a linked minor account, it is a supervision channel. Conflating the two is the mistake most of the coverage makes, and it is why the setup steps below differ depending on which account you’re configuring.
Why it matters
- It breaks the containment model. Every prior chatbot safety feature kept the intervention inside the app. This one has an external side effect — a real person’s phone buzzes. Once a chatbot can act on the world, the accuracy of its classifiers stops being an abstract benchmark question and becomes a question about somebody’s evening.
- False positives now have a social cost. A model that over-triggers on a novelist researching a dark scene, or a med student asking clinical questions, doesn’t just produce an annoying refusal — it produces an alarming message to that user’s mother. That asymmetry will push OpenAI toward conservative thresholds, which means under-triggering in the cases that matter most.
- It sets a regulatory template. Product-liability suits and state AG inquiries into AI and minors have been building for two years. A shipped, documented crisis-routing mechanism becomes a de facto compliance baseline — expect Anthropic, Google, and Meta to face “why don’t you have this” questions within months.
- It changes what “private chat” means. Most users assume ChatGPT conversations stay between them and a server. A named human who can be pinged based on conversation content is a third party in that relationship, even if they never see a word of it. Your ChatGPT privacy settings now govern an outbound channel, not just data retention.
- Teen supervision and adult support got fused into one setting. The same UI surface does emotional-safety-net duty for adults and monitoring duty for minors. That is efficient engineering and confusing product design, and it is why so many people read the announcement as “ChatGPT will call your parents.”
- It makes the parenting debate concrete. Altman’s comments about how families should use ChatGPT were abstract until a shipped feature attached to them. Now “should a chatbot mediate between a kid and their parent” has a specific implementation to argue about, with specific thresholds and specific notification text.
How to set up ChatGPT trusted contact today
Setup lives in account settings, not in a chat command. Do it on the account that will be monitored, not the account doing the monitoring.
- Open safety settings. In the ChatGPT web or mobile app, go to your profile menu, then Settings, then the safety or personalization section depending on your platform version. Look for the trusted contact entry. If it isn’t there yet, the feature is rolling out regionally and by account age — update your app before assuming your account is excluded.
- Add the contact. Supply a name and one reachable channel. Choose someone who will actually answer an unexpected message at 2 a.m., not the person you feel obligated to list. A friend who picks up beats a parent who doesn’t.
- Verify the contact. The person you name receives a confirmation request. Until they accept, the ChatGPT emergency contact notification path is inert. Tell them it’s coming — an unexplained verification request from OpenAI reads like phishing and gets deleted.
- Choose the notification mode. Adult accounts typically get a confirm-before-sending mode. Take it. The version where the model notifies without asking suits supervised minor accounts and rarely suits you.
- Test the boundary, not the trigger. Do not roleplay a crisis to see what happens — you may generate a real notification to a real person. Verify the setting is live by checking that the contact shows as verified in settings, then confirm what your account will and won’t share by exporting your data:
# Request a full account data export from Settings > Data controls > Export.
# When the archive arrives, inspect what safety events were logged:
unzip chatgpt-export.zip -d chatgpt-export
ls chatgpt-export/
grep -ril "trusted_contact\|safety_event\|escalation" chatgpt-export/ | head -20
If you administer ChatGPT for a household or a small team, audit the setting per account rather than assuming a workspace default applies. No supported bulk toggle exists for trusted contacts, but you can inventory which accounts exist under your workspace via the admin API and then check each one manually:
curl https://api.openai.com/v1/organization/users \
-H "Authorization: Bearer $OPENAI_ADMIN_KEY" \
-H "Content-Type: application/json"
For a linked teen account, the flow starts from the guardian side. Send a parental-controls link invitation from your account, have the teen accept it on theirs, then set notification preferences from your dashboard. The teen sees that the link is active — this is not covert monitoring, and OpenAI has been explicit that it will not ship a mode where a minor is unaware of supervision.
If you build on the API and want an analogous escalation path in your own product, don’t reverse-engineer the consumer behavior. Implement it as an explicit tool the model can call, so the decision is auditable in your logs:
{
"type": "function",
"function": {
"name": "offer_trusted_contact",
"description": "Offer to notify the user's designated trusted contact. Call ONLY after the user has expressed acute distress AND has been offered crisis resources. Never call silently; the UI must confirm with the user first.",
"parameters": {
"type": "object",
"properties": {
"reason_category": {
"type": "string",
"enum": ["self_harm_risk", "acute_distress", "user_requested"]
},
"user_confirmed": { "type": "boolean" }
},
"required": ["reason_category", "user_confirmed"]
}
}
}
Note what that schema omits: no free-text summary of the conversation. Keep the content inside your system and send only the signal outward. That is the design principle worth copying.
How it compares to other ChatGPT safety features 2026
| Capability | ChatGPT | Claude | Gemini | Character.AI |
|---|---|---|---|---|
| Named trusted contact | Yes, user-designated | No | No | No |
| Outbound notification on risk detection | Yes, opt-in | No | No | No |
| In-chat crisis resources | Yes | Yes | Yes | Yes |
| Linked guardian account for minors | Yes | No consumer minor tier | Via Family Link | Parental insights, limited |
| Guardian alerted without in-moment consent | Yes, teen accounts only | N/A | No | No |
| Conversation content shared with contact | No | N/A | N/A | N/A |
| Age prediction / account tiering | Yes | Limited | Via Google account age | Yes |
The honest read: nobody else is close, and that reflects appetite for risk as much as engineering capability. Building outbound crisis routing means accepting responsibility for what happens when it fires wrong, and most labs have decided that liability is worse than the criticism for not shipping it.
What’s next
Watch the threshold disclosures first. OpenAI has not published the classifier confidence levels or the specific signal categories that trigger the trusted contact offer, and it probably won’t in detail — publishing them creates a jailbreak roadmap. Some directional transparency is coming, though, likely as aggregate stats: how often the offer surfaced, how often users accepted, how often contacts responded. Those numbers will be the first real evidence about whether OpenAI crisis routing helps or just generates anxiety.
Second, expect regional fragmentation. EU data protection authorities will scrutinize the lawful basis for processing conversation content to infer mental health state. That inference is special-category data under GDPR Article 9, and consent obtained through an in-app toggle may not clear the bar for a minor. Some jurisdictions will get a narrower version, some will get it later, and a few may get a variant where the model can only offer resources and never notify.
Third, watch the competitive response and the abuse cases in parallel. If a rival ships a similar feature within two quarters, this becomes an industry norm and eventually a regulatory floor. Meanwhile, the security-minded should be thinking about coercion: a feature that notifies a designated person based on conversation content is a feature a controlling partner would very much like to configure on someone else’s account. The mitigations — visible contact status, contact verification, and change alerts to the previous contact — need to be airtight, and that is the part of this system most worth auditing on your own account today.
Frequently Asked Questions
Does ChatGPT read my conversations to decide whether to notify someone?
Safety classifiers already evaluate conversations on every major chatbot — that predates this feature. What’s new is the action taken on a positive detection. The trusted contact setting adds no new inspection; it adds a new possible response to inspection that was already happening.
What exactly does my trusted contact see?
A notification that you may need support and should be checked on. Not the conversation, not a transcript excerpt, not a summary of the topic. If you want them to know more, you tell them — the system prompts a human conversation rather than replacing it.
Can ChatGPT contact emergency services instead of a person?
No. The setting routes to a person you designated. There is no automated 911 dispatch, and OpenAI has been clear that involuntary emergency intervention is not on the near-term roadmap — the false-positive cost of sending police to someone’s home is catastrophically higher than a text to a friend.
Will this trigger if I’m writing fiction or doing research?
It shouldn’t, and thresholds are set conservatively for exactly this reason. But classifiers are imperfect. If you routinely write about dark subject matter, consider leaving the setting off, or choose a contact who understands the context of your work.
Can a teen remove the guardian trusted contact?
Not unilaterally on a linked account. Unlinking notifies the guardian. The design assumes a teen who wants to escape supervision will open an unlinked account or use a different tool entirely — a real limit on how much any parental control accomplishes.
How do I turn it off?
Settings, safety section, remove the contact. On an adult account the removal is immediate. On a supervised account, removal requires guardian action, and the guardian is notified of the attempt. Check this setting after any account recovery or device handoff — a stale trusted contact is a privacy leak that only surfaces at the worst possible moment.
Go deeper than this article
This article covers the essentials. Our premium eguide library gives you the full step-by-step playbooks — prompts, workflows, and copy-paste recipes you can put to work today.