File size: 380 Bytes
39c1327
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

def greet(name: str) -> str:
    """ Function that takes a name and returns a greeting """
    return f"Hello {name}!"

# Create the Gradio interface
interface = gr.Interface(fn=greet, 
                         inputs=gr.inputs.Textbox(lines=2, placeholder="Type your name..."), 
                         outputs="text")

# Launch the app
interface.launch()