README / app .py
Diamond2015's picture
Create app .py
e40f007 verified
Raw
History Blame Contribute Delete
197 Bytes
import gradio as gr
def say_hello(name):
return f"Hello {name}, this is your Hugging Face AI!"
demo = gr.Interface(fn=say_hello, inputs="text", outputs="text", title="Test AI")
demo.launch()