Spaces:
Sleeping
Sleeping
File size: 353 Bytes
9f88cc8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
log = []
def log_event(msg):
log.append(msg)
def render():
with gr.Column():
gr.Markdown("### Ethics Audit Log")
logbox = gr.Textbox(value="\n".join(log or ["No activity yet."]), lines=10, interactive=False)
gr.Button("Refresh").click(lambda: "\n".join(log or ["No activity yet."]), outputs=logbox) |