Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -192,12 +192,13 @@ def display_section_items(items):
|
|
192 |
For each item, clean the text and generate search links using your original link set.
|
193 |
"""
|
194 |
search_urls = {
|
195 |
-
"📚📖ArXiv": lambda k: f"/?q={quote(k)}",
|
196 |
-
"🔮<sup>Google</sup>": lambda k: f"https://www.google.com/search?q={quote(k)}",
|
197 |
-
"📺<sup>Youtube</sup>": lambda k: f"https://www.youtube.com/results?search_query={quote(k)}",
|
198 |
-
"🔭<sup>Bing</sup>": lambda k: f"https://www.bing.com/search?q={quote(k)}",
|
199 |
-
"💡<sup>
|
200 |
"📱X": lambda k: f"https://twitter.com/search?q={quote(k)}",
|
|
|
201 |
}
|
202 |
for item in items:
|
203 |
cleaned_text = clean_item_text(item)
|
|
|
192 |
For each item, clean the text and generate search links using your original link set.
|
193 |
"""
|
194 |
search_urls = {
|
195 |
+
"📚📖ArXiv": lambda k: f"/?q={quote(k)}",
|
196 |
+
"🔮<sup>Google</sup>": lambda k: f"https://www.google.com/search?q={quote(k)}",
|
197 |
+
"📺<sup>Youtube</sup>": lambda k: f"https://www.youtube.com/results?search_query={quote(k)}",
|
198 |
+
"🔭<sup>Bing</sup>": lambda k: f"https://www.bing.com/search?q={quote(k)}",
|
199 |
+
"💡<sup>Claude</sup>": lambda k: f"https://claude.ai/new?q={quote(k)}",
|
200 |
"📱X": lambda k: f"https://twitter.com/search?q={quote(k)}",
|
201 |
+
"🤖<sup>GPT</sup>": lambda k: f"https://chatgpt.com/?model=o3-mini-high&q={quote(k)}",
|
202 |
}
|
203 |
for item in items:
|
204 |
cleaned_text = clean_item_text(item)
|