Update app.py
Browse files
app.py
CHANGED
@@ -305,7 +305,18 @@ def display_python_parts():
|
|
305 |
for part, content in python_parts.items():
|
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 |
" + part
|
310 |
example_placeholders[part] = example
|
311 |
response = chat_with_model('Create detailed python script code example scripts with input data as python data structures and real URLs like wikipedia without functions for:' + example_placeholders[part], part)
|
|
|
305 |
for part, content in python_parts.items():
|
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 |
+
Write three DESCRIPTIVE MAP SUMMARIES
|
311 |
+
|
312 |
+
CITIES AND POINTS OF INTEREST FOR DEER HUNTING
|
313 |
+
|
314 |
+
LIKE HOTELS, FORESTS, REGIONAL BEHAVIOR OF WHITE TAIL DEER FOR MINOQUA
|
315 |
+
|
316 |
+
INCLUDING FARMERS ALMANC REPORTS AND GUIDES TO LURING DEER LIKE NATIVE AMERICANS DID.
|
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
|
322 |
response = chat_with_model('Create detailed python script code example scripts with input data as python data structures and real URLs like wikipedia without functions for:' + example_placeholders[part], part)
|