mishig HF staff commited on
Commit
992104c
1 Parent(s): ab5d80d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ def search_embeddings(query_text, output_option):
41
  hits = response["hits"]
42
 
43
  sources_md = [f"[\"{hit['source_page_title']}\"]({hit['source_page_url']})" for hit in hits]
44
- sources_md = ",".join(sources_md)
45
 
46
  # step3: present the results in markdown
47
  if output_option == "human-friendly":
 
41
  hits = response["hits"]
42
 
43
  sources_md = [f"[\"{hit['source_page_title']}\"]({hit['source_page_url']})" for hit in hits]
44
+ sources_md = ", ".join(sources_md)
45
 
46
  # step3: present the results in markdown
47
  if output_option == "human-friendly":