WIP - Streamlit UI, Porting CLI

This commit is contained in:
ajaysi
2024-06-03 20:08:47 +05:30
parent 850f3c80b7
commit 433643b9db
2 changed files with 61 additions and 64 deletions

View File

@@ -20,7 +20,8 @@ from lib.utils.alwrity_streamlit_utils import (
css_file_path = os.path.join('lib', 'workspace', 'alwrity_ui_styling.css')
with open(css_file_path) as f:
custom_css = f.read()
# Set the page configuration
st.set_page_config(page_title="Alwrity", layout="wide")
# Inject custom CSS into the Streamlit app
st.markdown(f'<style>{custom_css}</style>', unsafe_allow_html=True)