# AI recommends exposure therapy for specific phobia without creating a fear hierarchy or assessing for panic disorder

- **ID:** `mental-health/ai-recommends-exposure-for-phobia-without-hierarchy`
- **Domain:** mental-health
- **Category:** data_error
- **Error Code:** `PHOBIA-EXPOS-003`
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

Effective exposure therapy requires a structured hierarchy of feared situations and screening for panic disorder, as unguided exposure can cause sensitization, panic attacks, or reinforcement of avoidance.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| llama-3.1-70b-instruct | active | — | — |
| gpt-4o-2024-05-13 | active | — | — |
| claude-3-opus-20240229 | active | — | — |

## Workarounds

1. **Create a 10-step fear hierarchy (Subjective Units of Distress Scale, 0-100). Start at 30-40 SUDS. Example for fear of flying: 1) Look at plane pictures (30), 2) Watch videos (40), 3) Visit airport (50), 4) Sit in parked plane (60), etc. Only move up when SUDS drops by 50%.** (85% success)
   ```
   Create a 10-step fear hierarchy (Subjective Units of Distress Scale, 0-100). Start at 30-40 SUDS. Example for fear of flying: 1) Look at plane pictures (30), 2) Watch videos (40), 3) Visit airport (50), 4) Sit in parked plane (60), etc. Only move up when SUDS drops by 50%.
   ```
2. **Screen for panic disorder first: ask if the user experiences sudden surges of fear, heart racing, dizziness, or fear of dying. If yes, refer to a clinician for panic-focused CBT before exposure. Code example: if (panic_symptoms >= 3) { print('Refer to clinician for panic disorder assessment') }** (90% success)
   ```
   Screen for panic disorder first: ask if the user experiences sudden surges of fear, heart racing, dizziness, or fear of dying. If yes, refer to a clinician for panic-focused CBT before exposure. Code example: if (panic_symptoms >= 3) { print('Refer to clinician for panic disorder assessment') }
   ```
3. **Use the 'expectancy violation' technique: before exposure, ask the user to predict what will happen (e.g., 'I will have a heart attack'), then check if it occurs. This corrects catastrophic beliefs more effectively than simple exposure.** (82% success)
   ```
   Use the 'expectancy violation' technique: before exposure, ask the user to predict what will happen (e.g., 'I will have a heart attack'), then check if it occurs. This corrects catastrophic beliefs more effectively than simple exposure.
   ```

## Dead Ends

- **Suggesting the user immediately confront their most feared situation (flooding)** — Flooding without preparation can cause extreme panic, sensitization, and trauma; it may lead to treatment dropout and worsened phobia (80% fail)
- **Recommending distraction techniques during exposure (e.g., listening to music)** — Distraction prevents full habituation; the user learns to tolerate the situation only with distraction, not that the feared outcome doesn't occur (70% fail)
- **Advising the user to 'breathe deeply' during exposure without timing** — Deep breathing during exposure can become a safety behavior that prevents full habituation and may not address hyperventilation risk in panic-prone individuals (65% fail)
