File size: 396 Bytes
9d0beb6
bfb67e4
9d0beb6
3254d30
267c9ca
3254d30
 
bfb67e4
 
 
3254d30
 
bfb67e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

def hello(name: str) -> str:
    return f"Hello, {name}! ✅ HoloCine Space is live."

# IMPORTANT: on Spaces, export `app` and do NOT call launch()
app = gr.Interface(
    fn=hello,
    inputs=gr.Textbox(label="Your name"),
    outputs=gr.Textbox(label="Response"),
    title="HoloCine Demo (Minimal)",
    description="Minimal Gradio app for HF Spaces (no launch())."
)