Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def get_available_free():
|
|
54 |
models_conclusion["API"].append("Free" if chat_available or text_available else ("Pro Subscription" if pro_sub else "Not Responding"))
|
55 |
models_conclusion["Chat Completion"].append("---" if (pro_sub or (not chat_available and not text_available)) else ("β" if chat_available else "β"))
|
56 |
models_conclusion["Text Completion"].append("---" if (pro_sub or (not chat_available and not text_available)) else ("β" if text_available else "β"))
|
57 |
-
models_conclusion["Vision"].append("
|
58 |
pd.DataFrame(models_conclusion).to_csv("data.csv", index=False)
|
59 |
return models_conclusion
|
60 |
|
|
|
54 |
models_conclusion["API"].append("Free" if chat_available or text_available else ("Pro Subscription" if pro_sub else "Not Responding"))
|
55 |
models_conclusion["Chat Completion"].append("---" if (pro_sub or (not chat_available and not text_available)) else ("β" if chat_available else "β"))
|
56 |
models_conclusion["Text Completion"].append("---" if (pro_sub or (not chat_available and not text_available)) else ("β" if text_available else "β"))
|
57 |
+
models_conclusion["Vision"].append("β" if vision_available else "β")
|
58 |
pd.DataFrame(models_conclusion).to_csv("data.csv", index=False)
|
59 |
return models_conclusion
|
60 |
|