sradc commited on
Commit
b3627a2
1 Parent(s): eac1550

updated GUI text

Browse files
Files changed (1) hide show
  1. video_semantic_search/app.py +3 -2
video_semantic_search/app.py CHANGED
@@ -111,12 +111,13 @@ def display_search_results(results: list[SearchResult]) -> None:
111
  def main():
112
  st.set_page_config(page_title="video-semantic-search", layout="wide")
113
  st.header("Visual content search over videos")
 
 
114
  st.text_input("What are you looking for?", key="query")
115
  query = st.session_state["query"]
116
- st.text("Click an image to see the video on YouTube")
117
  if query:
 
118
  display_search_results(SEARCHER.search(query))
119
- st.text("App by Ben Tenmann (BenTenmann) and Sidney Radcliffe (sradc)")
120
 
121
 
122
  if __name__ == "__main__":
 
111
  def main():
112
  st.set_page_config(page_title="video-semantic-search", layout="wide")
113
  st.header("Visual content search over videos")
114
+ st.markdown("_Ben Tenmann_")
115
+ st.markdown("_Sidney Radcliffe_")
116
  st.text_input("What are you looking for?", key="query")
117
  query = st.session_state["query"]
 
118
  if query:
119
+ st.text("Click an image to open video in new tab")
120
  display_search_results(SEARCHER.search(query))
 
121
 
122
 
123
  if __name__ == "__main__":