Spaces:
Runtime error
Runtime error
Update app.py
Browse filesupdated for new property listings
app.py
CHANGED
@@ -88,7 +88,7 @@ def search(query):
|
|
88 |
result_json = extracted_data.to_json(orient='records')
|
89 |
return result_json
|
90 |
|
91 |
-
# Create a Gradio
|
92 |
iface = gr.Interface(
|
93 |
fn=search,
|
94 |
inputs="text",
|
@@ -97,5 +97,5 @@ iface = gr.Interface(
|
|
97 |
description="Enter your query to search.",
|
98 |
)
|
99 |
|
100 |
-
# Launch Gradio
|
101 |
iface.launch(share=True)
|
|
|
88 |
result_json = extracted_data.to_json(orient='records')
|
89 |
return result_json
|
90 |
|
91 |
+
# Create a Gradio UI
|
92 |
iface = gr.Interface(
|
93 |
fn=search,
|
94 |
inputs="text",
|
|
|
97 |
description="Enter your query to search.",
|
98 |
)
|
99 |
|
100 |
+
# Launch Gradio UI
|
101 |
iface.launch(share=True)
|