Update app.py
Browse files
app.py
CHANGED
@@ -306,16 +306,22 @@ def display_python_parts():
|
|
306 |
with st.expander(f"{content['emoji']} {part} - {content['details']}", expanded=False):
|
307 |
if st.button(f"Show Example for {part}", key=f"example_{part}"):
|
308 |
example = """
|
|
|
309 |
|
310 |
-
|
311 |
|
312 |
-
CITIES AND POINTS OF INTEREST FOR DEER HUNTING
|
313 |
|
314 |
-
|
315 |
|
316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
|
318 |
-
sHOW ALL ORIGIN OF TERMS IN INDIAN LANGUAGES AND WHAT THEY MEAN NEAR MINOQUA WISCONSIN
|
319 |
|
320 |
""" + part
|
321 |
example_placeholders[part] = example
|
|
|
306 |
with st.expander(f"{content['emoji']} {part} - {content['details']}", expanded=False):
|
307 |
if st.button(f"Show Example for {part}", key=f"example_{part}"):
|
308 |
example = """
|
309 |
+
Write a markdown outline with labels names and emojis to make it intersting to describe the cities and features of
|
310 |
|
311 |
+
1. DESCRIPTIVE MAP SUMMARIES
|
312 |
|
313 |
+
2. CITIES AND POINTS OF INTEREST FOR DEER HUNTING
|
314 |
|
315 |
+
3. HOTELS, FORESTS, REGIONAL BEHAVIOR OF WHITE TAIL DEER FOR MINOQUA
|
316 |
|
317 |
+
4. FARMERS ALMANC REPORTS
|
318 |
+
|
319 |
+
5. Local GUIDES TO DEER LIKE NATIVE AMERICANS DID. Corn Pollen, etc and living off the land with horses.
|
320 |
+
|
321 |
+
sHOW ALL ORIGIN OF TERMS IN INDIAN LANGUAGES AND WHAT THEY MEAN NEAR MINOQUA WISCONSIN. Etymology.
|
322 |
+
|
323 |
+
Cite Wikipedia articles on top three relevant topics and generate python code to use requests to retrieve the text and display the wikipedia article.
|
324 |
|
|
|
325 |
|
326 |
""" + part
|
327 |
example_placeholders[part] = example
|