mbahrami commited on
Commit
4677bcd
1 Parent(s): 0dc2218

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,8 +46,8 @@ This is an example of an auto-complete approach where the next token suggested b
46
  The next token is predicted per probability and a weight if it is appeared in keyword user's history or there is a similarity to semantic user's history
47
 
48
  """)
49
- history_keyword_text = st.text_input("Enter users's history **keywords match** (optional, i.e., 'Gates')", value="")
50
- semantic_text = st.text_input("Enter users's history **semantic** (optional, i.e., 'Microsoft or President')", value="Microsoft")
51
 
52
  text = st.text_input("Enter a text for auto completion...", value='Where is Bill')
53
 
 
46
  The next token is predicted per probability and a weight if it is appeared in keyword user's history or there is a similarity to semantic user's history
47
 
48
  """)
49
+ history_keyword_text = st.text_input("Enter users's history <Keywords Match> (optional, i.e., 'Gates')", value="")
50
+ semantic_text = st.text_input("Enter users's history <Semantic> (optional, i.e., 'Microsoft' or 'President')", value="Microsoft")
51
 
52
  text = st.text_input("Enter a text for auto completion...", value='Where is Bill')
53