Spaces:
Sleeping
Sleeping
instructions updated
Browse files
app.py
CHANGED
@@ -35,12 +35,15 @@ for message in st.session_state.messages:
|
|
35 |
st.markdown(message["content"])
|
36 |
|
37 |
st.sidebar.markdown(
|
38 |
-
"""
|
39 |
-
|
40 |
### Instructions:
|
41 |
|
42 |
-
This app guides you through YSA
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
"""
|
45 |
)
|
46 |
st.sidebar.success("Select a shelter first!")
|
|
|
35 |
st.markdown(message["content"])
|
36 |
|
37 |
st.sidebar.markdown(
|
38 |
+
"""
|
|
|
39 |
### Instructions:
|
40 |
|
41 |
+
This app guides you through YSA/Larkin website , utilizing a RAG-ready Q&A dataset [here](https://huggingface.co/datasets/eagle0504/youthless-homeless-shelter-web-scrape-dataset-qa-formatted) for chatbot assistance. The Larkin domain is processed into QA data [here](https://huggingface.co/datasets/eagle0504/larkin-web-scrape-dataset-qa-formatted). 🤖 Enter a question, and it finds similar ones in the database, offering answers with a distance score to gauge relevance—the lower the score, the closer the match. 🎯 For better accuracy and to reduce errors, user feedback helps refine the database. ✨
|
42 |
+
|
43 |
+
#### Source
|
44 |
+
|
45 |
+
- YSA, [site](https://youthspiritartworks.org/)
|
46 |
+
- Larkin, [site](https://larkinstreetyouth.org/)
|
47 |
"""
|
48 |
)
|
49 |
st.sidebar.success("Select a shelter first!")
|