Binaryy commited on
Commit
94e6dcf
1 Parent(s): 29f677b

Update app.py

Browse files

updated for new property listings

Files changed (1) hide show
  1. app.py +2 -2
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 interface
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 interface
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)