File size: 528 Bytes
03c7c61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()