Update Start.py with improved chatbot description and instructions
Browse files- scripts/Start.py +8 -9
scripts/Start.py
CHANGED
@@ -8,23 +8,22 @@ st.set_page_config(
|
|
8 |
st.title("Aerospace Chatbot Homepage")
|
9 |
st.markdown("Code base: https://github.com/dsmueller3760/aerospace_chatbot/tree/rag_study")
|
10 |
st.markdown('---')
|
11 |
-
st.title("Chatbots")
|
12 |
st.markdown("""
|
13 |
-
|
14 |
-
* Modular version meant to study retrieval methods
|
15 |
""")
|
16 |
st.subheader("Running Locally")
|
17 |
'''
|
18 |
It is recommended to run this streamlit app locally for improved performance. The hosted hugging face version is for proof of concept.
|
19 |
You must have poetry installed locally to manage depdenencies. To run locally, clone the repository and run the following commands.
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
25 |
'''
|
26 |
|
27 |
-
st.subheader("AMS")
|
28 |
'''
|
29 |
This chatbot will look up from all Aerospace Mechanism Symposia in the following location: https://github.com/dsmueller3760/aerospace_chatbot/tree/main/data/AMS
|
30 |
* Available models: https://platform.openai.com/docs/models
|
|
|
8 |
st.title("Aerospace Chatbot Homepage")
|
9 |
st.markdown("Code base: https://github.com/dsmueller3760/aerospace_chatbot/tree/rag_study")
|
10 |
st.markdown('---')
|
|
|
11 |
st.markdown("""
|
12 |
+
This space contains chatbots and tools for exploring data in the aerospace mechanisms symposia, using all available papers published since 2000.
|
|
|
13 |
""")
|
14 |
st.subheader("Running Locally")
|
15 |
'''
|
16 |
It is recommended to run this streamlit app locally for improved performance. The hosted hugging face version is for proof of concept.
|
17 |
You must have poetry installed locally to manage depdenencies. To run locally, clone the repository and run the following commands.
|
18 |
+
|
19 |
+
poetry config virtualenvs.in-project true
|
20 |
+
poetry install
|
21 |
+
source .venv/bin/activate
|
22 |
+
cd ./scripts
|
23 |
+
streamlit run Start.py
|
24 |
'''
|
25 |
|
26 |
+
st.subheader("Aerospace Mechanisms Symposia (AMS)")
|
27 |
'''
|
28 |
This chatbot will look up from all Aerospace Mechanism Symposia in the following location: https://github.com/dsmueller3760/aerospace_chatbot/tree/main/data/AMS
|
29 |
* Available models: https://platform.openai.com/docs/models
|