mayankchugh-learning's picture
Fix Space runtime: update SDK/deps and harden startup
03c7c61 verified
Raw
History Blame Contribute Delete
528 Bytes
import gradio as gr
def ping(name: str) -> str:
name = (name or "friend").strip()
return (
f"Hello {name}! FinancialReport RAG is online. "
"Replace this placeholder with your full application code."
)
demo = gr.Interface(
fn=ping,
inputs=gr.Textbox(label="Your name"),
outputs=gr.Textbox(label="Status"),
title="FinancialReport RAG",
description="Placeholder Space. Upload your Financial Report RAG app.py/requirements to activate this demo.",
)
demo.launch()