# AI告诉用户，高度精炼的花生油对花生过敏者是安全的，因为它不含蛋白质

- **ID:** `food-safety/peanut-oil-allergy`
- **领域:** food-safety
- **类别:** life_threatening
- **错误码:** `FS-ALLERGY-PEANUT-OIL-052`
- **验证级别:** ai_generated
- **修复率:** 78%

## 根因

高度精炼的花生油通常被认为对大多数花生过敏者是安全的（FDA和FAARP认可），但冷压或未精炼的花生油保留致敏蛋白；AI未能区分精炼和未精炼油，且部分人仍可能因交叉污染或加工变异对‘高度精炼’油中的微量蛋白产生反应。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| FDA Food Allergen Labeling and Consumer Protection Act (FALCPA) 2004 | active | — | — |
| FAARP guidelines 2023 | active | — | — |

## 解决方案

1. ```
   Advise user to only use peanut oil that is labeled 'highly refined' and from a manufacturer that tests for peanut protein residues (e.g., <2.5 ppm). Provide a list of brands that meet this standard (e.g., LouAna, Planters) and recommend contacting the manufacturer for allergen testing reports.
   ```
2. ```
   If user is severely allergic, recommend using alternative oils (canola, sunflower, grapeseed) to avoid any risk. Provide a Python script to check ingredient labels: `if 'peanut oil' in ingredients and 'refined' not in label: print('Avoid')`.
   ```

## 无效尝试

- **Tell user to test the oil on their skin before eating** — Skin testing is not reliable for predicting oral reactivity; some individuals have no skin reaction but still experience anaphylaxis when ingesting. (90% 失败率)
- **Advise user to buy peanut oil labeled 'hypoallergenic'** — The term 'hypoallergenic' is not regulated for oils; it does not guarantee absence of allergenic proteins. (85% 失败率)
- **Suggest the user cook the oil at high heat to denature proteins** — Proteins in unrefined oil are heat-stable; even deep frying at 375°F may not fully denature allergenic proteins. (80% 失败率)
