import gradio as gr def analyze(): return """# 591 Rental Analyzer ## Status: Running on Hugging Face Spaces This is a test version to verify deployment. Contact support if you see this message. """ demo = gr.Interface( fn=analyze, inputs=[], outputs="markdown", title="591 Rental Analyzer" ) demo.launch()