Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -179,6 +179,14 @@ examples=[["I'm planning a vacation to India. Can you suggest a one-week itinera
|
|
179 |
["What are some unique features of Python that make it stand out compared to other systems programming languages like C++,Java?", None, None, None, None, None,],
|
180 |
]
|
181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
with gr.Blocks(css=css) as chat:
|
183 |
gr.HTML(TITLE)
|
184 |
gr.ChatInterface(
|
|
|
179 |
["What are some unique features of Python that make it stand out compared to other systems programming languages like C++,Java?", None, None, None, None, None,],
|
180 |
]
|
181 |
|
182 |
+
css = """
|
183 |
+
#mkd {
|
184 |
+
height: 500px;
|
185 |
+
overflow: auto;
|
186 |
+
border: 1px solid #ccc;
|
187 |
+
}
|
188 |
+
"""
|
189 |
+
|
190 |
with gr.Blocks(css=css) as chat:
|
191 |
gr.HTML(TITLE)
|
192 |
gr.ChatInterface(
|