This notebook renders a Gradio app that starts in the reader’s browser.
import gradio as gr def greet(name): return f"Hello {name}!" gr.Interface(greet, "textbox", "textbox").launch()