thenHung commited on
Commit
3e6ef02
1 Parent(s): 734d410

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -12
app.py CHANGED
@@ -55,15 +55,11 @@ with gr.Blocks() as demo:
55
 
56
  demo.launch()
57
 
58
- # iface = gr.Interface(
59
- # fn=chatbot_interface,
60
- # inputs=gr.inputs.Textbox(lines=2, label="Chat"),
61
- # outputs=gr.outputs.Textbox(label="Response"),
62
- # layout="vertical",
63
- # title=title,
64
- # description=description,
65
- # examples=examples,
66
- # theme="london"
67
- # )
68
-
69
- # iface.launch()
 
55
 
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()