From 9d1a1f4c7845327e800eac379c50851f758e98bc Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Sun, 23 Aug 2026 16:18:53 +0200 Subject: [PATCH] Try with normal image --- cloud/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index a6ff835..b5bceca 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -250,7 +250,7 @@ async def cooking_params(): enhanced_filepath = enhance_image_for_ai(filepath) # Concurrent AI Execution - safety_task = asyncio.to_thread(safety_checker.check_dish_safety, enhanced_filepath) + safety_task = asyncio.to_thread(safety_checker.check_dish_safety, filepath) planner_task = asyncio.to_thread( microwave_cook_planner.generate_plan, image_path=enhanced_filepath,