File size: 501 Bytes
94e426d
852a240
ed7ad22
94e426d
 
ed7ad22
94e426d
 
ed7ad22
94e426d
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# app.py — MINIMAL GUARANTEED INIT for Hugging Face Spaces (SDK: gradio)
import gradio as gr

def ping(name: str) -> str:
    return f"Startup OK ✅  Hello, {name or 'world'}!"

demo = gr.Interface(fn=ping, inputs="text", outputs="text", title="Gradio Space is running")
app = demo  # ← 念のため app と demo の両方を公開

# 注意:
# - __main__ で launch() は不要(Spaces が自動で起動します)
# - 例外処理は最小化(まずは初期化を通すことが目的)