daniescamilla commited on
Commit
5c39e0b
·
verified ·
1 Parent(s): d96315a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ def process_image(image):
51
  recipe = generate_recipe(description)
52
 
53
  # Guardar la receta en un archivo temporal
54
- recipe_file_path = "/tmp/recipe.txt"
55
  with open(recipe_file_path, "w") as file:
56
  file.write(recipe)
57
 
 
51
  recipe = generate_recipe(description)
52
 
53
  # Guardar la receta en un archivo temporal
54
+ recipe_file_path = "/tmp/recipe.md"
55
  with open(recipe_file_path, "w") as file:
56
  file.write(recipe)
57