Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,8 +53,10 @@ def generate_html() -> str:
|
|
53 |
html = "<div class='chatbot'>"
|
54 |
for row in rows:
|
55 |
html += "<div>"
|
56 |
-
html += f"<span>{row['name']}</span>"
|
57 |
-
html += f"<span class='message'>{row['message']}</span>"
|
|
|
|
|
58 |
html += "</div>"
|
59 |
html += "</div>"
|
60 |
return html
|
|
|
53 |
html = "<div class='chatbot'>"
|
54 |
for row in rows:
|
55 |
html += "<div>"
|
56 |
+
#html += f"<span>{row['name']}</span>"
|
57 |
+
#html += f"<span class='message'>{row['message']}</span>"
|
58 |
+
html += f"<span>{row['inputs']}</span>"
|
59 |
+
html += f"<span class='outputs'>{row['outputs']}</span>"
|
60 |
html += "</div>"
|
61 |
html += "</div>"
|
62 |
return html
|