mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
11dda55352
Integrate initial work on Gradio Blocks by creating Blocks class and frontend Block code.
15 lines
273 B
Python
15 lines
273 B
Python
import gradio as gr
|
|
|
|
|
|
def greet(name):
|
|
return "Hello " + name + "!"
|
|
|
|
|
|
iface = gr.Interface(
|
|
fn=greet,
|
|
inputs=gr.inputs.Textbox(lines=2, placeholder="Name Here..."),
|
|
outputs="text",
|
|
)
|
|
if __name__ == "__main__":
|
|
app, local_url, share_url = iface.launch()
|