Spaces:
Running
on
T4
Running
on
T4
Commit
·
c0ca689
1
Parent(s):
8e5893e
addingmore
Browse files- main.py +8 -1
- requirements.txt +10 -1
main.py
CHANGED
@@ -1,11 +1,18 @@
|
|
1 |
-
from flask import Flask
|
|
|
2 |
|
3 |
app = Flask(__name__)
|
|
|
4 |
|
5 |
@app.route('/')
|
6 |
def hello():
|
7 |
return {"hei": "you succesfully deployed"}
|
8 |
|
|
|
|
|
|
|
|
|
|
|
9 |
@app.route('/get-npy')
|
10 |
def get_npy():
|
11 |
# # Get the 'img_url' from the query parameters
|
|
|
1 |
+
from flask import Flask, request, send_file, Response, jsonify
|
2 |
+
from flask_cors import CORS
|
3 |
|
4 |
app = Flask(__name__)
|
5 |
+
CORS(app)
|
6 |
|
7 |
@app.route('/')
|
8 |
def hello():
|
9 |
return {"hei": "you succesfully deployed"}
|
10 |
|
11 |
+
@app.route('/health', methods=['GET'])
|
12 |
+
def health_check():
|
13 |
+
# Simple health check endpoint
|
14 |
+
return jsonify({"status": "ok"}), 200
|
15 |
+
|
16 |
@app.route('/get-npy')
|
17 |
def get_npy():
|
18 |
# # Get the 'img_url' from the query parameters
|
requirements.txt
CHANGED
@@ -1,2 +1,11 @@
|
|
1 |
flask
|
2 |
-
gunicorn
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
flask
|
2 |
+
gunicorn
|
3 |
+
flask-cors
|
4 |
+
# numpy
|
5 |
+
# opencv-python
|
6 |
+
# Pillow
|
7 |
+
# requests
|
8 |
+
# git+https://github.com/facebookresearch/segment-anything.git
|
9 |
+
# --extra-index-url https://download.pytorch.org/whl/cu113
|
10 |
+
# torch
|
11 |
+
# torchvision
|