Spaces:
Runtime error
Runtime error
turn off share
Browse files
app.py
CHANGED
@@ -21,5 +21,5 @@ def chatbot(input):
|
|
21 |
inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
|
22 |
outputs = gr.outputs.Textbox(label="Reply")
|
23 |
|
24 |
-
iface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot", description="Ask anything you want", theme="compact").launch(share=
|
25 |
iface.launch()
|
|
|
21 |
inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
|
22 |
outputs = gr.outputs.Textbox(label="Reply")
|
23 |
|
24 |
+
iface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot", description="Ask anything you want", theme="compact").launch(share=False)
|
25 |
iface.launch()
|