aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
8edc36a
raw
history blame
284 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.Code(
value="""def hello_world():
return "Hello, world!"
print(hello_world())""",
language="python",
interactive=True,
show_label=False,
)
if __name__ == "__main__":
demo.launch()