ashwinpatti commited on
Commit
38434f1
·
1 Parent(s): 5933491

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import streamlit as st
2
  import pandas as pd
3
  import warnings
 
4
 
5
  warnings.filterwarnings("ignore")
6
 
@@ -72,7 +73,11 @@ search_query = st.text_input("Please enter your search query here",value="",key=
72
 
73
  st.divider()
74
  st.subheader("Results:")
75
- st.subheader(f"Search Query: {search_query}")
 
 
 
 
76
 
77
  st.divider()
78
  st.header("App details")
 
1
  import streamlit as st
2
  import pandas as pd
3
  import warnings
4
+ from PIL import Image
5
 
6
  warnings.filterwarnings("ignore")
7
 
 
73
 
74
  st.divider()
75
  st.subheader("Results:")
76
+ st.caption(f"Search Query: {search_query}")
77
+
78
+ ranked_hits = search(search_query,top_k)
79
+ st.markdown("\n-------------------------\n")
80
+
81
 
82
  st.divider()
83
  st.header("App details")