OdinStef commited on
Commit
23665b9
·
1 Parent(s): 3c361e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def CustomChatGPT(user_input):
19
 
20
  description = "This bot was made by Stephane Dube (dubestephane @ vivaldi.net). Feel free to send me a message for any question or inquiry. \n"
21
  title = "I am ready to answer any of your question."
22
- submit = gr.Button("Download")
23
  demo = gr.Interface(fn=CustomChatGPT, description = description, title = title, inputs = gr.inputs.Textbox(label = "Question", placeholder="E.g. What is the tallest building in the world?"), outputs = gr.outputs.Textbox(label = "Answer"))
24
 
25
  demo.launch()
 
19
 
20
  description = "This bot was made by Stephane Dube (dubestephane @ vivaldi.net). Feel free to send me a message for any question or inquiry. \n"
21
  title = "I am ready to answer any of your question."
22
+ submit = gr.Button(value="Send")
23
  demo = gr.Interface(fn=CustomChatGPT, description = description, title = title, inputs = gr.inputs.Textbox(label = "Question", placeholder="E.g. What is the tallest building in the world?"), outputs = gr.outputs.Textbox(label = "Answer"))
24
 
25
  demo.launch()