shrut123 commited on
Commit
badd3d7
1 Parent(s): 440a9e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -97,8 +97,8 @@ if pc:
97
 
98
  st.write("### Search Results:")
99
  for match in results.matches:
100
- st.markdown(f"Score: **{match.score:.4f}")
101
- st.write(f"####Answer:**{match.metadata.get('context', 'No context available.')}**")
102
  st.write("---")
103
  else:
104
  st.error("Please enter a query and ensure the index is initialized.")
 
97
 
98
  st.write("### Search Results:")
99
  for match in results.matches:
100
+ st.markdown(f"Score: {match.score:.4f}")
101
+ st.write(f"Answer:{match.metadata.get('context', 'No context available.')}")
102
  st.write("---")
103
  else:
104
  st.error("Please enter a query and ensure the index is initialized.")