e40f007
1
2
3
4
5
6
7
8
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()