Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ st.set_page_config(
|
|
| 16 |
'About': "# Midjourney: https://discord.com/channels/@me/997514686608191558"
|
| 17 |
}
|
| 18 |
)
|
| 19 |
-
|
| 20 |
# -----------------------------------------------------------------Art Card Sidebar:
|
| 21 |
import base64
|
| 22 |
import requests
|
|
@@ -176,6 +176,7 @@ def search_glossary(query):
|
|
| 176 |
st.markdown(f"#### {category}")
|
| 177 |
st.write(f"- {query}")
|
| 178 |
|
|
|
|
| 179 |
st.write('## ' + query)
|
| 180 |
|
| 181 |
all=""
|
|
|
|
| 16 |
'About': "# Midjourney: https://discord.com/channels/@me/997514686608191558"
|
| 17 |
}
|
| 18 |
)
|
| 19 |
+
PromptPrefix = 'Create a markdown outline and table with appropriate emojis for roleplay rulesets which define the method steps of play for the topics of '
|
| 20 |
# -----------------------------------------------------------------Art Card Sidebar:
|
| 21 |
import base64
|
| 22 |
import requests
|
|
|
|
| 176 |
st.markdown(f"#### {category}")
|
| 177 |
st.write(f"- {query}")
|
| 178 |
|
| 179 |
+
query = PromptPrefix + query # Add prompt preface for method step task behavior
|
| 180 |
st.write('## ' + query)
|
| 181 |
|
| 182 |
all=""
|