awacke1 commited on
Commit
9f41f68
·
verified ·
1 Parent(s): fde1bcd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -12
app.py CHANGED
@@ -17,18 +17,6 @@ st.set_page_config(
17
  }
18
  )
19
 
20
- # AI Query Begin!
21
- AIQuery = """
22
- Create a streamlit python app which implements this in python functions
23
- and appropriate libraries using function based code with annotated parameters
24
- and language parts of speech and key words. Include appropriate emojis for user interface labels with buttons, sidebar, dataframe, expander, and other ui controls.
25
- Use a CSV dataset user interface with an outline for with subpoints highlighting key aspects, using emojis for visual engagement.
26
- Include methodical well ordered rules in code and boldface important entities
27
- (for data display use markdown outlines and tables with appropriate emojis for enumerated smart terms)
28
- and ruleset elements.
29
- """
30
- # AI Query Complete! ---------------------------------------------------------------------------------------------------------------------------------------------------
31
-
32
 
33
 
34
  # -----------------------------------------------------------------Art Card Sidebar:
@@ -197,6 +185,21 @@ def display_buttons_with_scores():
197
  query_prefix = f"{key} **{term}:**"
198
  # -----------------------------------------------------------------
199
  # query_body = f"Create a detailed outline for **{term}** with subpoints highlighting key aspects, using emojis for visual engagement. Include step-by-step rules and boldface important entities and ruleset elements."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  query_body = AIQuery
201
  response = search_glossary(query_prefix + query_body)
202
 
 
17
  }
18
  )
19
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
 
22
  # -----------------------------------------------------------------Art Card Sidebar:
 
185
  query_prefix = f"{key} **{term}:**"
186
  # -----------------------------------------------------------------
187
  # query_body = f"Create a detailed outline for **{term}** with subpoints highlighting key aspects, using emojis for visual engagement. Include step-by-step rules and boldface important entities and ruleset elements."
188
+
189
+ # AI Query Begin!
190
+ AIQuery = """
191
+ Create a streamlit python app which implements this in python functions
192
+ and appropriate libraries using function based code with annotated parameters
193
+ and language parts of speech and key words. Include appropriate emojis for user interface labels with buttons, sidebar, dataframe, expander, and other ui controls.
194
+ Use a CSV dataset user interface with an outline for with subpoints highlighting key aspects, using emojis for visual engagement.
195
+ Include methodical well ordered rules in code and boldface important entities
196
+ (for data display use markdown outlines and tables with appropriate emojis for enumerated smart terms)
197
+ and ruleset elements. Show full code listing
198
+ """
199
+ # AI Query Complete! ---------------------------------------------------------------------------------------------------------------------------------------------------
200
+
201
+
202
+
203
  query_body = AIQuery
204
  response = search_glossary(query_prefix + query_body)
205