IR_ESG_RAG_Bot / app.py
Corin1998's picture
Upload 8 files
94e426d verified
raw
history blame contribute delete
501 Bytes
# 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 が自動で起動します)
# - 例外処理は最小化(まずは初期化を通すことが目的)