Spaces:
Runtime error
Runtime error
Merge pull request #4 from ugm2/update/landing
Browse files- README.md +1 -1
- interface/pages.py +8 -4
README.md
CHANGED
@@ -6,5 +6,5 @@ colorTo: green
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.10.0
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
10 |
---
|
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.10.0
|
8 |
app_file: app.py
|
9 |
+
pinned: true
|
10 |
---
|
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
|
16 |
|
17 |
st.markdown(
|
18 |
"This is a tool to allow indexing & search content using neural capabilities"
|
19 |
)
|
20 |
st.markdown(
|
21 |
-
"In this
|
22 |
-
"\n - Index raw text as documents"
|
23 |
-
"\n - Use Dense Passage Retrieval pipeline"
|
24 |
"\n - Search the indexed documents"
|
25 |
)
|
26 |
st.markdown(
|
@@ -28,6 +28,10 @@ def page_landing_page(container):
|
|
28 |
"\n - Build other pipelines"
|
29 |
"\n - [Optional] Include text to audio to read responses"
|
30 |
)
|
|
|
|
|
|
|
|
|
31 |
|
32 |
|
33 |
def page_search(container):
|
|
|
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(
|
|
|
28 |
"\n - Build other pipelines"
|
29 |
"\n - [Optional] Include text to audio to read responses"
|
30 |
)
|
31 |
+
st.markdown(
|
32 |
+
"Follow development of the tool [here](https://github.com/ugm2/neural-search-demo)"
|
33 |
+
"\n\nDeveloped with π by [@ugm2](https://github.com/ugm2)"
|
34 |
+
)
|
35 |
|
36 |
|
37 |
def page_search(container):
|