diff --git a/main.py b/main.py index 607aa59..13f78e4 100644 --- a/main.py +++ b/main.py @@ -1,11 +1,24 @@ import streamlit as st import requests -# Initialize session state for prompt history -if "history" not in st.session_state: - st.session_state.history = [] +st.set_page_config( + page_title="maargdarshak", + initial_sidebar_state="expanded", +) +st.markdown(""" + +""", unsafe_allow_html=True) + # Function to send POST request to a local server def send_post_request(prompt): url = "http://localhost:19194/" # Update this to your actual server URL