From 995b6a5e85a7a1387ed538be0ad155e58cd23b22 Mon Sep 17 00:00:00 2001 From: Pranshav Lakhia Date: Sun, 13 Oct 2024 10:08:01 -0400 Subject: [PATCH] removed 3 dots menu --- main.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) 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 -- 2.45.2