Spaces:
Runtime error
Runtime error
Peter
commited on
Commit
·
1173b30
1
Parent(s):
b486aa4
:art: minor response formatting
Browse files
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 |
|