Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -34,13 +34,10 @@ css="""
|
|
| 34 |
.message.bot {
|
| 35 |
background-color: #ffe4c1 !important; /* Light gray bot messages */
|
| 36 |
color: #252f61 !important;
|
| 37 |
-
}
|
| 38 |
|
| 39 |
with gr.Blocks(css=css, title=title) as demo:
|
| 40 |
-
|
| 41 |
-
chatbot = gr.ChatInterface(
|
| 42 |
-
respond,
|
| 43 |
-
type = "messages",)
|
| 44 |
|
| 45 |
#chatbot ui - conversation history and user input
|
| 46 |
chatbot.launch()
|
|
|
|
| 34 |
.message.bot {
|
| 35 |
background-color: #ffe4c1 !important; /* Light gray bot messages */
|
| 36 |
color: #252f61 !important;
|
| 37 |
+
}"""
|
| 38 |
|
| 39 |
with gr.Blocks(css=css, title=title) as demo:
|
| 40 |
+
chatbot = gr.ChatInterface(respond, type = "messages",)
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
#chatbot ui - conversation history and user input
|
| 43 |
chatbot.launch()
|