borderless / ui /sidebar.py
spagestic's picture
Remove redundant sidebar content to streamline user interface and focus on essential features.
f21b892
Raw
History Blame Contribute Delete
229 Bytes
# ui/sidebar.py
import gradio as gr
def render_sidebar() -> gr.Column:
with gr.Sidebar():
gr.LoginButton()
history_host = gr.Column(elem_classes=["borderless-chat-history"])
return history_host