Update app.py
Browse files
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("
|
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()
|