EladSpamson commited on
Commit
bbaa5e1
·
verified ·
1 Parent(s): 755f6de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 > 1.0:
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