Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1238,7 +1238,17 @@ def main():
|
|
1238 |
|
1239 |
# Relocated! Hope you like your new space - enjoy!
|
1240 |
# Display instructions and handle query parameters
|
1241 |
-
st.markdown("## Glossary Lookup\nEnter a term in the URL query, like `?q=Nanotechnology` or `?query=Martian Syndicate`.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1242 |
try:
|
1243 |
query_params = st.query_params
|
1244 |
#query = (query_params.get('q') or query_params.get('query') or [''])[0]
|
|
|
1238 |
|
1239 |
# Relocated! Hope you like your new space - enjoy!
|
1240 |
# Display instructions and handle query parameters
|
1241 |
+
#st.markdown("## Glossary Lookup\nEnter a term in the URL query, like `?q=Nanotechnology` or `?query=Martian Syndicate`.")
|
1242 |
+
|
1243 |
+
st.markdown('''
|
1244 |
+
### Mixable Word Game AI 📖✨🔍
|
1245 |
+
- **Unlock the Power of Words with Mixable Word Game AI:** Transform your vocabulary with an AI that brings words to life.
|
1246 |
+
- **Capabilities:** Generates comprehensive glossaries and thrilling challenges.
|
1247 |
+
- **Experience:** Your key to becoming a word wizard, enhancing your language skills.
|
1248 |
+
- **Query Parameter Usage:** Enter a vocabulary term in the URL query, like `?q=Palindrome` or `?query=Anagram`, to explore new word game challenges.
|
1249 |
+
|
1250 |
+
''')
|
1251 |
+
|
1252 |
try:
|
1253 |
query_params = st.query_params
|
1254 |
#query = (query_params.get('q') or query_params.get('query') or [''])[0]
|