Spaces:
Sleeping
Sleeping
import gradio as gr | |
def greet(name): # function that takes input text… | |
return f"Hello {name}!!" # …and returns a greeting | |
gr.Interface( | |
fn=greet, | |
inputs="text", | |
outputs="text", | |
title="My First Space" | |
).launch() | |