awacke1 commited on
Commit
af7eb73
·
verified ·
1 Parent(s): a7cadd7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -130,7 +130,7 @@ roleplaying_glossary = {
130
 
131
 
132
  def search_glossary(query):
133
- for category, terms in transhuman_glossary.items():
134
  if query.lower() in (term.lower() for term in terms):
135
  st.markdown(f"#### {category}")
136
  st.write(f"- {query}")
 
130
 
131
 
132
  def search_glossary(query):
133
+ for category, terms in roleplaying_glossary.items():
134
  if query.lower() in (term.lower() for term in terms):
135
  st.markdown(f"#### {category}")
136
  st.write(f"- {query}")