Amitontheweb commited on
Commit
6155c9f
·
verified ·
1 Parent(s): 1629dbf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def title_gen(keywords):
49
 
50
  for i in range(len(beam_outputs)):
51
  result = tokenizer.decode(beam_outputs[i], skip_special_tokens=True)
52
- titles += f"{result}<br>" #Create string with titles and <br> tag for html reading in gradio html
53
 
54
  return titles
55
 
 
49
 
50
  for i in range(len(beam_outputs)):
51
  result = tokenizer.decode(beam_outputs[i], skip_special_tokens=True)
52
+ titles += f"<h3>{result}<br>" #Create string with all the titles and a <br> tag for line break
53
 
54
  return titles
55