Suman Das commited on
Commit
02107e6
·
1 Parent(s): 7260e13

updated smol agents app

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ class TextToImageTool(Tool):
23
 
24
  def forward(self, prompt):
25
  updated_prompt = prompt + ". Don't use duplicate or overlapping texts. Make sure words used in the image are correctly spelled."
26
- print(updated_prompt)
27
  return self.client.text_to_image(updated_prompt)
28
 
29
  @tool
 
23
 
24
  def forward(self, prompt):
25
  updated_prompt = prompt + ". Don't use duplicate or overlapping texts. Make sure words used in the image are correctly spelled."
26
+ # print(updated_prompt)
27
  return self.client.text_to_image(updated_prompt)
28
 
29
  @tool