ChauhanV commited on
Commit
0b0349e
·
1 Parent(s): 05835bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -15,8 +15,6 @@ def chatbot(input,history=[]):
15
 
16
  import gradio as gr
17
 
18
- app = gr.Interface(fn=chatbot,inputs=["text","state"],
19
- outputs=["chatbot","state"],
20
- title="ChatGPT Demo")
21
 
22
  app.launch()
 
15
 
16
  import gradio as gr
17
 
18
+ app = gr.Interface(fn=chatbot,inputs=["text","state"],outputs=["chatbot","state"],title="ChatGPT Demo")
 
 
19
 
20
  app.launch()