bstraehle commited on
Commit
99e8cb8
1 Parent(s): e469a0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -56,10 +56,9 @@ def chat(message, history):
56
 
57
  # TODO: Handle multiple images and other file types
58
  if len(image_values) > 0:
59
- download_link = f"<p>Download: https://platform.openai.com/storage/files/{image_values[0]}</p>"
60
 
61
- #return f"{'<hr>'.join(list(reversed(text_values))[1:])}{download_link}"
62
- return f"{'<br /><hr />'.join(reversed(text_values))}<br /><hr />{download_link}"
63
 
64
  gr.ChatInterface(
65
  fn=chat,
 
56
 
57
  # TODO: Handle multiple images and other file types
58
  if len(image_values) > 0:
59
+ download_link = f"<br /><br />Download: https://platform.openai.com/storage/files/{image_values[0]}"
60
 
61
+ return f"{'<br /><br />'.join(list(reversed(text_values))[1:])}{download_link}"
 
62
 
63
  gr.ChatInterface(
64
  fn=chat,