joeli88 commited on
Commit
80d2629
1 Parent(s): 40b5210

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -21,7 +21,10 @@ def chatbot(input):
21
  inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
22
  outputs = gr.outputs.Textbox(label="Reply")
23
 
24
- gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot",
25
- description="Ask anything you want",
26
- theme="compact").launch(debug=True)
27
 
 
 
 
 
21
  inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
22
  outputs = gr.outputs.Textbox(label="Reply")
23
 
24
+ #gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot",
25
+ # description="Ask anything you want",
26
+ # theme="compact").launch(debug=True)
27
 
28
+ gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot",
29
+ description="Ask anything you want",
30
+ theme="compact", debug=True).launch()