ugmSorcero commited on
Commit
f670f93
1 Parent(s): dbcf2e8

Updates landing page to v2.0

Browse files
Files changed (1) hide show
  1. interface/pages.py +4 -4
interface/pages.py CHANGED
@@ -12,15 +12,15 @@ from interface.components import (
12
 
13
  def page_landing_page(container):
14
  with container:
15
- st.header("Neural Search V1.0")
16
 
17
  st.markdown(
18
  "This is a tool to allow indexing & search content using neural capabilities"
19
  )
20
  st.markdown(
21
- "In this first version you can:"
22
- "\n - Index raw text as documents"
23
- "\n - Use Dense Passage Retrieval pipeline"
24
  "\n - Search the indexed documents"
25
  )
26
  st.markdown(
 
12
 
13
  def page_landing_page(container):
14
  with container:
15
+ st.header("Neural Search V2.0")
16
 
17
  st.markdown(
18
  "This is a tool to allow indexing & search content using neural capabilities"
19
  )
20
  st.markdown(
21
+ "In this second version you can:"
22
+ "\n - Index raw text, URLs and almost any file as documents"
23
+ "\n - Use Dense Passage Retrieval & Keyword Search pipeline"
24
  "\n - Search the indexed documents"
25
  )
26
  st.markdown(