# 人工智能在未评估昼夜节律或光照暴露的情况下，对睡眠相位延迟障碍推荐标准睡眠卫生

- **ID:** `mental-health/ai-recommends-sleep-hygiene-for-delayed-phase-without-assessment`
- **领域:** mental-health
- **类别:** data_error
- **错误码:** `SLEEP-DSPD-001`
- **验证级别:** ai_generated
- **修复率:** 83%

## 根因

睡眠相位延迟障碍（DSPD）是一种昼夜节律障碍，而非睡眠卫生问题；像'早点睡觉'这样的标准建议可能通过制造睡眠努力和焦虑而加重病情。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| llama-3.1-70b-instruct | active | — | — |
| gpt-4o-2024-05-13 | active | — | — |
| claude-3-sonnet-20240229 | active | — | — |

## 解决方案

1. ```
   使用时间疗法：每2-3天将就寝时间提前15-30分钟。用睡眠日志追踪。代码示例：from datetime import timedelta; new_bedtime = current_bedtime - timedelta(minutes=15); print(f'新就寝时间：{new_bedtime}')
   ```
2. ```
   推荐在醒来30分钟内使用亮光疗法（10,000勒克斯）20-30分钟。使用如Carex Day-Light Classic的光疗箱。在目标就寝时间前2小时避免强光（尤其是蓝光）。
   ```
3. ```
   筛查共病：抑郁症、ADHD和双相障碍常与DSPD共病。如果存在情绪症状，在开始任何干预前转介给睡眠专家。
   ```

## 无效尝试

- **Advising the user to 'just go to bed earlier' regardless of their natural sleep time** — DSPD involves a shifted circadian clock; trying to sleep before the body's natural sleep onset leads to lying awake, creating conditioned insomnia and sleep anxiety (85% 失败率)
- **Recommending melatonin at bedtime** — Melatonin is most effective when taken 2-3 hours before the desired sleep time, not at bedtime. Taking it at the wrong time can actually phase-delay the clock further (70% 失败率)
- **Suggesting caffeine avoidance in the evening only** — While helpful, this does not address the core circadian misalignment; users with DSPD may need light therapy in the morning and light avoidance in the evening (60% 失败率)
