Bobricha commited on
Commit
d91fcc9
·
verified ·
1 Parent(s): b934bcd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def animal_image_generation_tool(animal_name: str) -> Image.Image:
37
  search_results = search_tool(search_tool.run)
38
 
39
  # generates an image based on the description of an animal.
40
- promt=f"Create a realistic image of a {animal_name}"
41
  image = image_generation_tool(promt) # This returns a PIL image
42
 
43
  return image # Return the path to the saved image
 
37
  search_results = search_tool(search_tool.run)
38
 
39
  # generates an image based on the description of an animal.
40
+ promt = f"Create a realistic image of a {animal_name}"
41
  image = image_generation_tool(promt) # This returns a PIL image
42
 
43
  return image # Return the path to the saved image