mbahrami commited on
Commit
3c31e1c
1 Parent(s): 3e016a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -9,6 +9,7 @@ def get_model(model):
9
 
10
  HISTORY_WEIGHT = 100 # set history weight (if found any keyword from history, it will priorities based on its weight)
11
 
 
12
 
13
  history_keyword_text = st.text_input("Enter users's history keywords (optional, i.e., 'Gates')", value="Gates")
14
 
 
9
 
10
  HISTORY_WEIGHT = 100 # set history weight (if found any keyword from history, it will priorities based on its weight)
11
 
12
+ st.caption("This is a simple auto-completion where the next token is predicted per probability and a weigh if appears in user's history")
13
 
14
  history_keyword_text = st.text_input("Enter users's history keywords (optional, i.e., 'Gates')", value="Gates")
15