Spaces:
Sleeping
Sleeping
update app.py
Browse files
app.py
CHANGED
|
@@ -104,13 +104,13 @@ def main():
|
|
| 104 |
LLM = None
|
| 105 |
EMBEDDINGS = None
|
| 106 |
|
| 107 |
-
st.set_page_config(page_title="
|
| 108 |
st.write(css, unsafe_allow_html=True)
|
| 109 |
|
| 110 |
st.header("Chat with multiple PDFs :mag:")
|
| 111 |
|
| 112 |
# User options for LLM and Embeddings
|
| 113 |
-
model_choice = st.radio("Choose your model", ("OpenAI", "HuggingFace"))
|
| 114 |
api_token = st.text_input("Enter your API token", type="password")
|
| 115 |
|
| 116 |
if st.button("Save API Token"):
|
|
|
|
| 104 |
LLM = None
|
| 105 |
EMBEDDINGS = None
|
| 106 |
|
| 107 |
+
st.set_page_config(page_title="MultiDoc_ChatBot", page_icon=":mag:")
|
| 108 |
st.write(css, unsafe_allow_html=True)
|
| 109 |
|
| 110 |
st.header("Chat with multiple PDFs :mag:")
|
| 111 |
|
| 112 |
# User options for LLM and Embeddings
|
| 113 |
+
model_choice = st.radio("Choose your model source", ("OpenAI", "HuggingFace"))
|
| 114 |
api_token = st.text_input("Enter your API token", type="password")
|
| 115 |
|
| 116 |
if st.button("Save API Token"):
|