catherineThurgood commited on
Commit
a21c871
·
verified ·
1 Parent(s): 9360e68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
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()