Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
26 |
-
|
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()
|