gradio/demo/code_component/run.py
2023-07-07 12:44:16 -04:00

16 lines
284 B
Python

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()