Update app.py
Browse files
app.py
CHANGED
@@ -17,8 +17,8 @@ def CustomChatGPT(user_input):
|
|
17 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
18 |
return ChatGPT_reply
|
19 |
|
20 |
-
description = "This
|
21 |
-
title = "I am
|
22 |
|
23 |
demo = gr.Interface(fn=CustomChatGPT, description = description, title = title, inputs = gr.inputs.Textbox(label = "Question"), outputs = gr.outputs.Textbox(label = "Answer"))
|
24 |
|
|
|
17 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
18 |
return ChatGPT_reply
|
19 |
|
20 |
+
description = "This chatbotwas made by Stephane Dube (dubestephane @ vivaldi.net) \n"
|
21 |
+
title = "I am an AI, ready to answer any of your question."
|
22 |
|
23 |
demo = gr.Interface(fn=CustomChatGPT, description = description, title = title, inputs = gr.inputs.Textbox(label = "Question"), outputs = gr.outputs.Textbox(label = "Answer"))
|
24 |
|