File size: 358 Bytes
aeef65b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

def echo(text):
    return f"You typed: {text}"

demo = gr.Interface(
    fn=echo,
    inputs=gr.Textbox(label="Input text"),
    outputs=gr.Textbox(label="Output"),
    title="🧠 MemorizationBarrier",
    description="Minimal Gradio app — the Space runs successfully!"
)

if __name__ == "__main__":
    demo.launch()