Update app.py
Browse files
app.py
CHANGED
@@ -316,7 +316,7 @@ def process_key(key, test_model):
|
|
316 |
return "invalid"
|
317 |
else:
|
318 |
total_balance = credit_summary.get("total_balance", 0)
|
319 |
-
if total_balance <= 0:
|
320 |
return "free"
|
321 |
else:
|
322 |
if test_model_availability(key, test_model):
|
|
|
316 |
return "invalid"
|
317 |
else:
|
318 |
total_balance = credit_summary.get("total_balance", 0)
|
319 |
+
if total_balance <= 0.03:
|
320 |
return "free"
|
321 |
else:
|
322 |
if test_model_availability(key, test_model):
|