ashwinpatti commited on
Commit
e172747
·
1 Parent(s): 80f625a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -88,14 +88,15 @@ def displayResults(results, container):
88
 
89
  st.title("Indian Movie Search")
90
  st.caption("Using semantic search to improve the search accuracy")
91
- st.caption(f"Corpus size:{len(df)}")
92
  appTab, detailsTab = st.tabs(["App", "App Technical Details"])
93
  with appTab:
94
 
95
  st.markdown(
96
- """
97
  - Search for movie names based on the plot.
98
  - The corpus is made up of Hindi, Telugu, Tamil, Kannada, Bengali, Malayalam, Odiya, Marathi, Punjabi & Gujarathi movies released between 1950 and 2023.
 
99
  - The app understands the context of the query and returns the results from the datastore.""")
100
 
101
  #st.subheader(f"Search Query: {query}")
 
88
 
89
  st.title("Indian Movie Search")
90
  st.caption("Using semantic search to improve the search accuracy")
91
+
92
  appTab, detailsTab = st.tabs(["App", "App Technical Details"])
93
  with appTab:
94
 
95
  st.markdown(
96
+ f"""
97
  - Search for movie names based on the plot.
98
  - The corpus is made up of Hindi, Telugu, Tamil, Kannada, Bengali, Malayalam, Odiya, Marathi, Punjabi & Gujarathi movies released between 1950 and 2023.
99
+ - Corpus size:{len(df)}
100
  - The app understands the context of the query and returns the results from the datastore.""")
101
 
102
  #st.subheader(f"Search Query: {query}")