Spaces:
Runtime error
Runtime error
Fix config
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 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 |
|