DrSong commited on
Commit
17c98b9
·
1 Parent(s): 2938f95

Update description

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def chat(query, history=[]):
14
  _, history = model.chat(tokenizer, query, history, max_length=512)
15
  return history, history
16
 
17
- description = "This is an unofficial chatbot application based on open source model ChatGLM-6B, running on cpu(hence max_length is limited to 512)."
18
  title = "ChatGLM-6B Chatbot"
19
  examples = [["Hello?"], ["你好。"], ["介绍清华"]]
20
 
 
14
  _, history = model.chat(tokenizer, query, history, max_length=512)
15
  return history, history
16
 
17
+ 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"
18
  title = "ChatGLM-6B Chatbot"
19
  examples = [["Hello?"], ["你好。"], ["介绍清华"]]
20