Introducing Gradio 5.0

Read More

Demos

Text

Media

Tabular

Chatbots

Other

Transformers

import gradio as gr


def greet(name):
return "Hello " + name + "!"


demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")

if __name__ == "__main__":
demo.launch()

Prompt will update code in editor

Preview

Loading...