mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
13 lines
234 B
Python
13 lines
234 B
Python
import gradio as gr
|
|
|
|
def greet(name):
|
|
return "Hello " + name + "!"
|
|
|
|
demo = gr.Interface(
|
|
fn=greet,
|
|
inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
|
|
outputs="text",
|
|
)
|
|
if __name__ == "__main__":
|
|
demo.launch()
|