Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -121,14 +121,16 @@ chat_interface = gr.ChatInterface(
|
|
121 |
["Could you please provide an explanation about the concept of recursion?"],
|
122 |
["Could you explain what a URL is?"]
|
123 |
],
|
|
|
124 |
)
|
125 |
|
126 |
# Gradio Web Interface
|
127 |
-
with gr.Blocks(css="style.css") as demo:
|
128 |
gr.Markdown(DESCRIPTION)
|
129 |
chat_interface.render()
|
130 |
gr.Markdown(LICENSE)
|
131 |
|
|
|
132 |
# Main Execution
|
133 |
if __name__ == "__main__":
|
134 |
demo.queue(max_size=20)
|
|
|
121 |
["Could you please provide an explanation about the concept of recursion?"],
|
122 |
["Could you explain what a URL is?"]
|
123 |
],
|
124 |
+
theme='shivi/calm_seafoam'
|
125 |
)
|
126 |
|
127 |
# Gradio Web Interface
|
128 |
+
with gr.Blocks(css="style.css",theme='shivi/calm_seafoam') as demo:
|
129 |
gr.Markdown(DESCRIPTION)
|
130 |
chat_interface.render()
|
131 |
gr.Markdown(LICENSE)
|
132 |
|
133 |
+
|
134 |
# Main Execution
|
135 |
if __name__ == "__main__":
|
136 |
demo.queue(max_size=20)
|