Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -83,8 +83,8 @@ def chatbot_response(user_input):
|
|
83 |
def chat(user_input):
|
84 |
response = chatbot_response(user_input)
|
85 |
return response
|
86 |
-
|
87 |
-
iface = gr.Interface(fn=chat, inputs="text", outputs="text")
|
88 |
iface.launch()
|
89 |
|
90 |
|
|
|
83 |
def chat(user_input):
|
84 |
response = chatbot_response(user_input)
|
85 |
return response
|
86 |
+
css = ".gradio-container {background: url(https://upload.wikimedia.org/wikipedia/commons/4/49/Abstract_-_Coconut_Leaf_%28Imagicity_186%29.jpg)}"
|
87 |
+
iface = gr.Interface(fn=chat, inputs="text", outputs="text",css=css)
|
88 |
iface.launch()
|
89 |
|
90 |
|