Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,11 +19,9 @@ def fetch_response(user_input):
|
|
19 |
|
20 |
|
21 |
# Streamlit app
|
22 |
-
st.set_page_config(page_title="AI Chatbot", page_icon=":robot:") # Set app title and icon
|
23 |
-
|
24 |
def main():
|
25 |
# Layout with sidebar
|
26 |
-
col1, col2 = st.
|
27 |
|
28 |
with col1:
|
29 |
# Header with logo (replace with custom logo CSS)
|
@@ -71,3 +69,4 @@ def main():
|
|
71 |
if __name__ == "__main__":
|
72 |
main()
|
73 |
|
|
|
|
19 |
|
20 |
|
21 |
# Streamlit app
|
|
|
|
|
22 |
def main():
|
23 |
# Layout with sidebar
|
24 |
+
col1, col2 = st.columns([3, 1])
|
25 |
|
26 |
with col1:
|
27 |
# Header with logo (replace with custom logo CSS)
|
|
|
69 |
if __name__ == "__main__":
|
70 |
main()
|
71 |
|
72 |
+
|