Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -110,7 +110,8 @@ def display_glossary_grid(glossary):
|
|
110 |
"๐": lambda k: f"https://en.wikipedia.org/wiki/{quote(k)}",
|
111 |
"๐": lambda k: f"https://www.google.com/search?q={quote(k)}",
|
112 |
"โถ๏ธ": lambda k: f"https://www.youtube.com/results?search_query={quote(k)}",
|
113 |
-
"๐": lambda k: f"https://www.bing.com/search?q={quote(k)}"
|
|
|
114 |
}
|
115 |
|
116 |
groupings = [
|
|
|
110 |
"๐": lambda k: f"https://en.wikipedia.org/wiki/{quote(k)}",
|
111 |
"๐": lambda k: f"https://www.google.com/search?q={quote(k)}",
|
112 |
"โถ๏ธ": lambda k: f"https://www.youtube.com/results?search_query={quote(k)}",
|
113 |
+
"๐": lambda k: f"https://www.bing.com/search?q={quote(k)}",
|
114 |
+
"๐ฒ": lambda k: f"https://huggingface.co/spaces/awacke1/MixableScifiAI?q={quote(k)}", # this url plus query!
|
115 |
}
|
116 |
|
117 |
groupings = [
|