| # 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 | |
| # 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 | |