Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -189,7 +189,9 @@ def display_glossary_grid(roleplaying_glossary):
|
|
189 |
"📖": lambda k: f"https://en.wikipedia.org/wiki/{quote(k)}",
|
190 |
"🔍": lambda k: f"https://www.google.com/search?q={quote(k)}",
|
191 |
"▶️": lambda k: f"https://www.youtube.com/results?search_query={quote(k)}",
|
192 |
-
"🔎": lambda k: f"https://www.bing.com/search?q={quote(k)}"
|
|
|
|
|
193 |
}
|
194 |
|
195 |
for category, details in roleplaying_glossary.items():
|
|
|
189 |
"📖": lambda k: f"https://en.wikipedia.org/wiki/{quote(k)}",
|
190 |
"🔍": lambda k: f"https://www.google.com/search?q={quote(k)}",
|
191 |
"▶️": lambda k: f"https://www.youtube.com/results?search_query={quote(k)}",
|
192 |
+
"🔎": lambda k: f"https://www.bing.com/search?q={quote(k)}",
|
193 |
+
"🎲": lambda k: f"?q={quote(k)}",
|
194 |
+
|
195 |
}
|
196 |
|
197 |
for category, details in roleplaying_glossary.items():
|