Spaces:
Runtime error
Runtime error
removed unnecessary comments
Browse files
app.py
CHANGED
@@ -4,15 +4,12 @@ import requests
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
-
from PIL import Image
|
8 |
-
from io import BytesIO
|
9 |
|
10 |
from Gradio_UI import GradioUI
|
11 |
|
12 |
@tool
|
13 |
-
def image_generator(character:str, sceneDescription:str)-> any:
|
14 |
-
|
15 |
-
"""A tool that returns an image base on a character and a scene setting
|
16 |
Args:
|
17 |
character: the character
|
18 |
sceneDescription: the description of the scene
|
@@ -23,8 +20,6 @@ def image_generator(character:str, sceneDescription:str)-> any: #it's important
|
|
23 |
try:
|
24 |
# call the image_generation_tool tool with a text prompt
|
25 |
image = image_generation_tool(f"{character} in {sceneDescription}")
|
26 |
-
# img = Image.open(BytesIO(image.content))
|
27 |
-
# return img
|
28 |
return image
|
29 |
except Exception as e:
|
30 |
return f"Error fetching image for given inputs: {str(e)}"
|
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
|
|
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
@tool
|
11 |
+
def image_generator(character:str, sceneDescription:str)-> any:
|
12 |
+
"""A tool that returns an image based on a character and a scene setting
|
|
|
13 |
Args:
|
14 |
character: the character
|
15 |
sceneDescription: the description of the scene
|
|
|
20 |
try:
|
21 |
# call the image_generation_tool tool with a text prompt
|
22 |
image = image_generation_tool(f"{character} in {sceneDescription}")
|
|
|
|
|
23 |
return image
|
24 |
except Exception as e:
|
25 |
return f"Error fetching image for given inputs: {str(e)}"
|