Peter commited on
Commit
1173b30
1 Parent(s): b486aa4

:art: minor response formatting

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ def chat(prompt_message, temperature=0.7, top_p=0.95, top_k=50):
67
  history = [prompt_message, response]
68
  html = ""
69
  for item in history:
70
- html += f"<b>{item}</b> <br>"
71
 
72
  html += ""
73
 
 
67
  history = [prompt_message, response]
68
  html = ""
69
  for item in history:
70
+ html += f"<b>{item}</b> <br><br>"
71
 
72
  html += ""
73