m3hrdadfi commited on
Commit
18b0e4b
β€’
1 Parent(s): a32fbbb

Fix config

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. server.py +1 -1
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Streamlit demo for Chef Transformers
3
  emoji: images/logo.png
4
  sdk: streamlit
5
  app_file: server.py
 
1
  ---
2
+ title: Chef Transformer πŸ‘©β€πŸ³ / πŸ‘¨β€πŸ³
3
  emoji: images/logo.png
4
  sdk: streamlit
5
  app_file: server.py
server.py CHANGED
@@ -65,7 +65,7 @@ custom_keywords = st.text_input(
65
  'Add custom ingredients here (separated by `,`): ',
66
  ", ".join(["salt", "pepper"]),
67
  key="custom_keywords",
68
- on_change=custom_keywords_on_change,
69
  max_chars=1000)
70
  custom_keywords = list(set([x.strip() for x in custom_keywords.strip().split(',') if len(x.strip()) > 0]))
71
 
 
65
  'Add custom ingredients here (separated by `,`): ',
66
  ", ".join(["salt", "pepper"]),
67
  key="custom_keywords",
68
+ # on_change=custom_keywords_on_change,
69
  max_chars=1000)
70
  custom_keywords = list(set([x.strip() for x in custom_keywords.strip().split(',') if len(x.strip()) > 0]))
71