591Analyzer / app_clean.py
54justin's picture
Upload 21 files
667965b verified
raw
history blame contribute delete
357 Bytes
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()