OdinStef commited on
Commit
f597394
·
1 Parent(s): d38e6ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 is an unofficial chatbot application based on open source model ChatGLM-6B(https://github.com/THUDM/ChatGLM-6B), running on cpu(therefore max_length is limited to 512). \nIf you want to use this chat bot in your space, 'Duplicate this space' by click the button close to 'Linked Models'. \n"
21
- title = "I am Stephane AI and my name is Cameron"
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