harishraju7 commited on
Commit
c12bc35
·
verified ·
1 Parent(s): 34ab2e6

removed unnecessary comments

Browse files
Files changed (1) hide show
  1. app.py +2 -7
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: #it's important to specify the return type
14
- #Keep this format for the description / args / args description but feel free to modify the tool
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)}"