mirror of
https://github.com/vladmandic/automatic
synced 2026-09-03 19:40:47 +02:00
1c5b3a47e2
Signed-off-by: Vladimir Mandic <mandic00@live.com>
12 lines
397 B
Python
12 lines
397 B
Python
import gradio as gr
|
|
|
|
|
|
def create_ui():
|
|
with gr.Row():
|
|
btn_refresh = gr.Button("Refresh", elem_id='btn_history_refresh')
|
|
with gr.Row():
|
|
_history_table = gr.HTML('', elem_id='history_table')
|
|
with gr.Row():
|
|
_history_timeline = gr.HTML('', elem_id='history_timeline')
|
|
btn_refresh.click(_js='refreshHistory', fn=None, inputs=[], outputs=[], show_progress=False)
|