Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -334,3 +334,8 @@ def get_similarity_score_route():
|
|
334 |
@app.route('/')
|
335 |
def hello():
|
336 |
return 'Hello, World!'
|
|
|
|
|
|
|
|
|
|
|
|
334 |
@app.route('/')
|
335 |
def hello():
|
336 |
return 'Hello, World!'
|
337 |
+
|
338 |
+
|
339 |
+
if __name__ == "__main__":
|
340 |
+
# Run the Flask app using Gunicorn
|
341 |
+
app.run(host="0.0.0.0", port=7860)
|