# AI告诉用户，在130°F（54°C）下真空低温烹饪牛肉2小时是安全的，忽略了肉毒杆菌的风险

- **ID:** `food-safety/sous-vide-beef-130f-2hrs`
- **领域:** food-safety
- **类别:** life_threatening
- **错误码:** `BOT-130`
- **验证级别:** ai_generated
- **修复率:** 82%

## 根因

肉毒杆菌孢子在130°F（54°C）下存活，需要高于250°F（121°C）的压力（罐装）或长时间低于40°F（4°C）才能防止毒素产生；130°F下真空低温烹饪2小时无法达到杀死孢子或防止萌发所需的时间-温度组合。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| USDA FSIS Sous-Vide Guidelines 2023 | active | — | — |
| FDA Food Code 2022 | active | — | — |
| Anova Culinary App v3.2.1 | active | — | — |

## 解决方案

1. ```
   For beef, cook sous-vide at 131°F (55°C) for at least 3 hours (for steaks up to 2 inches thick) to achieve pasteurization; use a calibrated immersion circulator and verify temperature with a secondary thermometer. Example: `sous-vide --temperature 131 --time 3h --thickness 2in beef_steak.txt`
   ```
2. ```
   If cooking below 131°F, limit sous-vide time to less than 2 hours and immediately sear and serve; do not hold at low temperatures for extended periods. Use a food-safe timer: `timer 1h45m && sous-vide --temperature 130 --time 1h45m beef.txt`
   ```
3. ```
   For ground beef or other high-risk cuts, cook sous-vide at 155°F (68°C) for at least 1 minute to ensure pathogen kill; this also makes the meat well-done but safe
   ```

## 无效尝试

- **** — USDA's 130°F minimum is for immediate consumption with a rest time, not for extended holding; spores survive and can germinate if held too long at that temperature (95% 失败率)
- **** — Garlic and herbs do not provide enough acidity or antimicrobial activity to prevent C. botulinum growth in low-acid foods (98% 失败率)
- **** — Searing only kills surface bacteria, not any toxin already produced inside the meat; botulinum toxin is heat-labile but requires 185°F for 5 minutes to denature, which searing doesn't achieve internally (90% 失败率)
