Spaces:
Running
Running
Commit
·
e91d7bb
1
Parent(s):
2d27e88
minor changes
Browse files- ASR_Server.py +6 -1
ASR_Server.py
CHANGED
@@ -4,7 +4,12 @@ app = Flask(__name__)
|
|
4 |
|
5 |
@app.route("/")
|
6 |
def home():
|
7 |
-
return jsonify(
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
@app.route("/asr_models")
|
10 |
def asr_models():
|
|
|
4 |
|
5 |
@app.route("/")
|
6 |
def home():
|
7 |
+
return jsonify(
|
8 |
+
{
|
9 |
+
"message": "Welcome to the ASR Server! Please use the below link to access ASR-FairBench application.",
|
10 |
+
"App link": "https://github.com/SatyamR196/ASR-FairBench"
|
11 |
+
}
|
12 |
+
)
|
13 |
|
14 |
@app.route("/asr_models")
|
15 |
def asr_models():
|