Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -514,12 +514,17 @@ def display_images_and_wikipedia_summaries():
|
|
514 |
youtube_url = create_search_url_youtube(keyword)
|
515 |
bing_url = create_search_url_bing(keyword)
|
516 |
ai_url = create_search_url_ai(keyword)
|
|
|
|
|
|
|
517 |
links_md = f"""
|
518 |
[Wikipedia]({wikipedia_url}) |
|
519 |
[Google]({google_url}) |
|
520 |
[YouTube]({youtube_url}) |
|
521 |
[Bing]({bing_url}) |
|
522 |
-
[AI]({ai_url})
|
|
|
|
|
523 |
"""
|
524 |
st.markdown(links_md)
|
525 |
col_index += 1
|
|
|
514 |
youtube_url = create_search_url_youtube(keyword)
|
515 |
bing_url = create_search_url_bing(keyword)
|
516 |
ai_url = create_search_url_ai(keyword)
|
517 |
+
ai_url2 = create_search_url_ai(keyword + ' creates a graphic novel with characters settings and ten line story ' + PromptPrefix)
|
518 |
+
ai_url3 = create_search_url_ai(keyword + ' creates a graphic novel streamlit app with characters settings and ten line story ' + PromptPrefix)
|
519 |
+
{quote(PromptPrefix)}
|
520 |
links_md = f"""
|
521 |
[Wikipedia]({wikipedia_url}) |
|
522 |
[Google]({google_url}) |
|
523 |
[YouTube]({youtube_url}) |
|
524 |
[Bing]({bing_url}) |
|
525 |
+
[AI]({ai_url})|
|
526 |
+
[AI Novel]({ai_url2} )|
|
527 |
+
[AI Novel App]({ai_url3})
|
528 |
"""
|
529 |
st.markdown(links_md)
|
530 |
col_index += 1
|