Update app.py
Browse files
app.py
CHANGED
|
@@ -447,8 +447,7 @@ def list_models():
|
|
| 447 |
return jsonify({"error": "Unauthorized"}), 401
|
| 448 |
|
| 449 |
return jsonify({
|
| 450 |
-
"data": [{"id": model, "object": "model"} for model in all_models]
|
| 451 |
-
"free_models": free_models
|
| 452 |
})
|
| 453 |
|
| 454 |
def get_billing_info():
|
|
|
|
| 447 |
return jsonify({"error": "Unauthorized"}), 401
|
| 448 |
|
| 449 |
return jsonify({
|
| 450 |
+
"data": [{"id": model, "object": "model"} for model in all_models]
|
|
|
|
| 451 |
})
|
| 452 |
|
| 453 |
def get_billing_info():
|