Rename test-st.py to app.py
Browse files- test-st.py β app.py +2 -2
test-st.py β app.py
RENAMED
@@ -34,10 +34,10 @@ st.set_page_config(page_title="Medical Chat Bot", page_icon=":ambulance:", layou
|
|
34 |
st.title("Medical Chat Bot")
|
35 |
st.caption("Talk your way to better health")
|
36 |
|
37 |
-
with open("
|
38 |
sidebar_content = sidebar_file.read()
|
39 |
|
40 |
-
with open("
|
41 |
styles_content = styles_file.read()
|
42 |
|
43 |
# Display the DDL for the selected table
|
|
|
34 |
st.title("Medical Chat Bot")
|
35 |
st.caption("Talk your way to better health")
|
36 |
|
37 |
+
with open("./sidebar.md", "r") as sidebar_file:
|
38 |
sidebar_content = sidebar_file.read()
|
39 |
|
40 |
+
with open("./styles.md", "r") as styles_file:
|
41 |
styles_content = styles_file.read()
|
42 |
|
43 |
# Display the DDL for the selected table
|