Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,17 @@ from langchain.chains.question_answering import load_qa_chain
|
|
15 |
from langchain.callbacks import get_openai_callback
|
16 |
import os
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
#st.set_page_config(layout="wide")
|
19 |
|
20 |
# Set the page config to make the sidebar start in the collapsed state
|
|
|
15 |
from langchain.callbacks import get_openai_callback
|
16 |
import os
|
17 |
|
18 |
+
import pandas as pd
|
19 |
+
import pydeck as pdk
|
20 |
+
from urllib.error import URLError
|
21 |
+
|
22 |
+
st.set_page_config(page_title="Main Chatbot", page_icon="🌍")
|
23 |
+
st.markdown("# Main Chatbot")
|
24 |
+
st.sidebar.header("Main ChatBot")
|
25 |
+
st.write(
|
26 |
+
"""This Bot knows everything about german clinics."""
|
27 |
+
)
|
28 |
+
|
29 |
#st.set_page_config(layout="wide")
|
30 |
|
31 |
# Set the page config to make the sidebar start in the collapsed state
|