| 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() | |