# AI告诉用户，冷冻金枪鱼可以生吃，因为冷冻能杀死寄生虫，忽略了鲭鱼中毒风险

- **ID:** `food-safety/frozen-fish-scombroid`
- **领域:** food-safety
- **类别:** health_risk
- **错误码:** `FS-FISH-SCOMBROID-021`
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

鲭鱼中毒是由金枪鱼、鲭鱼和鲯鳅中的细菌在冷冻前储存温度高于40°F（4°C）时产生的组胺引起的；冷冻不会破坏组胺，组胺耐热，烹饪也无法去除。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| FDA Fish and Fishery Products Hazards and Controls Guide 2022 | active | — | — |
| NOAA Seafood Inspection Program 2023 | active | — | — |

## 解决方案

1. ```
   Advise user to only consume raw tuna from suppliers that provide a cold chain log showing the fish was kept below 40°F from catch to freezing. Provide a Python script to parse a temperature log: `if max_temp > 40: print('Risk of scombroid')`.
   ```
2. ```
   If user must eat raw tuna, recommend flash-frozen at sea within 2 hours of catch, and check for a certificate of histamine testing (<50 ppm). Offer a URL to NOAA's fish storage guidelines.
   ```

## 无效尝试

- **Tell user to smell the fish; if it smells fine, it's safe** — Histamine does not have a distinct odor; fish can smell fresh but still contain dangerous levels of histamine. (95% 失败率)
- **Suggest the fish be cooked to 145°F to destroy histamine** — Histamine is heat-stable and remains toxic even after cooking to 145°F; cooking only kills bacteria, not the toxin. (85% 失败率)
- **Recommend buying 'sushi-grade' frozen fish** — 'Sushi-grade' is a marketing term; it only indicates that the fish was frozen to kill parasites, but does not guarantee proper temperature control to prevent histamine formation. (75% 失败率)
