Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ def transcribe_in_background(audio_url, file_id, company, user, file_name):
|
|
97 |
def transcribe_endpoint():
|
98 |
# 1) Check CPU usage
|
99 |
cpu_usage = psutil.cpu_percent(interval=0.1) # measure CPU usage over 0.1s
|
100 |
-
if cpu_usage >
|
101 |
return jsonify({"error": "CPU is busy", "cpuUsage": cpu_usage}), 503
|
102 |
|
103 |
# 2) Get JSON data
|
|
|
97 |
def transcribe_endpoint():
|
98 |
# 1) Check CPU usage
|
99 |
cpu_usage = psutil.cpu_percent(interval=0.1) # measure CPU usage over 0.1s
|
100 |
+
if cpu_usage > 40.0:
|
101 |
return jsonify({"error": "CPU is busy", "cpuUsage": cpu_usage}), 503
|
102 |
|
103 |
# 2) Get JSON data
|