yutohub commited on
Commit
48d94bf
1 Parent(s): 84a42c7

Fix app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ prompt = st.chat_input("Search anything...")
50
  if prompt:
51
  results = retriever.invoke(prompt)
52
 
53
- st.markdown(f"Top n `{len(results)}` related papers")
54
 
55
  for result in results:
56
  with st.expander(label=result.metadata['title'], expanded=False):
 
50
  if prompt:
51
  results = retriever.invoke(prompt)
52
 
53
+ st.markdown(f"Top `{len(results)}` related papers")
54
 
55
  for result in results:
56
  with st.expander(label=result.metadata['title'], expanded=False):