is_food_safe_to_eat
Check if a stored food is still safe to eat by providing the food item, storage days, and method. Returns safety status with reasoning based on USDA guidelines.
Instructions
Given a food item, days since storage began, and storage method, return whether the food is likely still safe to eat per USDA guidelines. Returns a status (safe / use_immediately / unsafe / unknown) with reasoning. NOT a substitute for sensory checks (smell, look, taste).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| food | Yes | Food name. See list_supported_foods for valid values. | |
| storage_method | Yes | Where the food has been stored. | |
| days_since_stored | Yes | Number of days since the food was stored under the named method. |