awacke1 commited on
Commit
ea3f500
·
1 Parent(s): 72fe3a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -19
app.py CHANGED
@@ -305,25 +305,7 @@ 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
- 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
328
  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)
329
  st.code(response, language="python")
 
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 = "Write a markdown outline with rhyming, labels, names and emojis." + part
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  example_placeholders[part] = example
310
  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)
311
  st.code(response, language="python")