mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
16 lines
265 B
Python
16 lines
265 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__":
|
|
app, local_url, share_url = demo.launch()
|