update
Browse files
app.py
CHANGED
@@ -119,7 +119,14 @@ demo = gr.ChatInterface(
|
|
119 |
label="Top-p (nucleus sampling)",
|
120 |
),
|
121 |
],
|
122 |
-
type="messages"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
)
|
124 |
|
125 |
|
|
|
119 |
label="Top-p (nucleus sampling)",
|
120 |
),
|
121 |
],
|
122 |
+
type="messages",
|
123 |
+
css="""
|
124 |
+
.markdown pre {
|
125 |
+
white-space: pre-wrap !important;
|
126 |
+
word-wrap: break-word !important;
|
127 |
+
overflow-wrap: break-word !important;
|
128 |
+
}
|
129 |
+
"""
|
130 |
)
|
131 |
|
132 |
|