awacke1 commited on
Commit
1ab4d49
1 Parent(s): c10ecc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -16,6 +16,8 @@ st.set_page_config(
16
  'About': "# Midjourney: https://discord.com/channels/@me/997514686608191558"
17
  }
18
  )
 
 
19
  # -----------------------------------------------------------------Art Card Sidebar:
20
  import base64
21
  import requests
@@ -143,6 +145,8 @@ def search_glossary(query):
143
  if query.lower() in (term.lower() for term in terms):
144
  st.markdown(f"#### {category}")
145
  st.write(f"- {query}")
 
 
146
 
147
  st.write('## ' + query)
148
 
 
16
  'About': "# Midjourney: https://discord.com/channels/@me/997514686608191558"
17
  }
18
  )
19
+ PromptPrefix = 'Create a markdown outline and table with appropriate emojis for word game rules which define the method steps of play for topic of '
20
+
21
  # -----------------------------------------------------------------Art Card Sidebar:
22
  import base64
23
  import requests
 
145
  if query.lower() in (term.lower() for term in terms):
146
  st.markdown(f"#### {category}")
147
  st.write(f"- {query}")
148
+
149
+ query = PromptPrefix + query # Add prompt preface for method step task behavior
150
 
151
  st.write('## ' + query)
152