Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,6 +17,7 @@ st.set_page_config(
|
|
17 |
}
|
18 |
)
|
19 |
|
|
|
20 |
|
21 |
|
22 |
# -----------------------------------------------------------------Art Card Sidebar:
|
@@ -103,6 +104,7 @@ def search_glossary(query):
|
|
103 |
st.markdown(f"#### {category}")
|
104 |
st.write(f"- {query}")
|
105 |
|
|
|
106 |
st.write('## ' + query)
|
107 |
|
108 |
all=""
|
|
|
17 |
}
|
18 |
)
|
19 |
|
20 |
+
PromptPrefix = 'Create a markdown outline and table with appropriate emojis for science fiction stories, plotlines, and background on aliens, robots and spaceships for the topics of '
|
21 |
|
22 |
|
23 |
# -----------------------------------------------------------------Art Card Sidebar:
|
|
|
104 |
st.markdown(f"#### {category}")
|
105 |
st.write(f"- {query}")
|
106 |
|
107 |
+
query = PromptPrefix + query # Add prompt preface for method step task behavior
|
108 |
st.write('## ' + query)
|
109 |
|
110 |
all=""
|