thenHung commited on
Commit
93d8ea6
1 Parent(s): 3e6ef02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -48,6 +48,11 @@ with gr.Blocks() as demo:
48
  msg = gr.Textbox()
49
  clear = gr.Button("Clear")
50
 
 
 
 
 
 
51
  msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
52
  bot, chatbot, chatbot
53
  )
@@ -56,10 +61,7 @@ with gr.Blocks() as demo:
56
  demo.launch()
57
 
58
  iface = gr.Interface(
59
- title=title,
60
- description=description,
61
- examples=examples,
62
- theme="london"
63
  )
64
 
65
  iface.launch()
 
48
  msg = gr.Textbox()
49
  clear = gr.Button("Clear")
50
 
51
+ title=title
52
+ description=description
53
+ examples=examples
54
+ theme="london"
55
+
56
  msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
57
  bot, chatbot, chatbot
58
  )
 
61
  demo.launch()
62
 
63
  iface = gr.Interface(
64
+
 
 
 
65
  )
66
 
67
  iface.launch()