File size: 206 Bytes
61814c9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

gr.Interface(
    fn=lambda x: f"Hello {x}! This Space was synced from GitHub using huggingface/hub-sync.",
    inputs="text",
    outputs="text",
    title="Hub Sync Test",
).launch()