Spaces:
Paused
Paused
File size: 357 Bytes
667965b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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() |