Spaces:
Runtime error
Runtime error
ugmSorcero
commited on
Commit
β’
57f7a2e
1
Parent(s):
01b8e8e
Updates landing page
Browse files- interface/pages.py +7 -1
interface/pages.py
CHANGED
@@ -5,11 +5,17 @@ from interface.components import component_show_search_result, component_text_in
|
|
5 |
|
6 |
def page_landing_page(container):
|
7 |
with container:
|
8 |
-
st.header("
|
9 |
|
10 |
st.markdown(
|
11 |
"This is a tool to allow indexing & search content using neural capabilities"
|
12 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
def page_search(container):
|
15 |
with container:
|
|
|
5 |
|
6 |
def page_landing_page(container):
|
7 |
with container:
|
8 |
+
st.header("Neural Search V1.0")
|
9 |
|
10 |
st.markdown(
|
11 |
"This is a tool to allow indexing & search content using neural capabilities"
|
12 |
)
|
13 |
+
st.markdown(
|
14 |
+
"In this first version you can:"/
|
15 |
+
" - Index raw text as documents"/
|
16 |
+
" - Use Dense Passage Retrieval pipeline"/
|
17 |
+
" - Search the indexed documents"
|
18 |
+
)
|
19 |
|
20 |
def page_search(container):
|
21 |
with container:
|