Spaces:
Runtime error
Runtime error
import gradio as gr | |
import pandas as pd | |
def value_func(): | |
return pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) | |
with gr.Blocks() as demo: | |
gr.DataFrame(value=value_func, every=10) | |
demo.launch() |