eliasangels commited on
Commit
032a5a2
·
verified ·
1 Parent(s): 6924f3e

changing sources to f string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -86,7 +86,7 @@ def respond(message, history):
86
  yield response
87
 
88
  usedSections = list(dict.fromkeys(topSections))
89
- citation = "\n\n\* 📋 Sources: " + ", ".join(usedSections) + "*"
90
  yield response + citation
91
 
92
  custom_css = """
 
86
  yield response
87
 
88
  usedSections = list(dict.fromkeys(topSections))
89
+ citation = f"\n\n *📋 Sources: {usedSections}*"
90
  yield response + citation
91
 
92
  custom_css = """