updates Mar6

This commit is contained in:
belviskhoremk
2026-03-06 22:37:40 +00:00
parent 2ed998058e
commit 9dccc83293
23 changed files with 2257 additions and 74 deletions

View File

@@ -91,12 +91,12 @@ async def get_available_models(user=Depends(get_current_user)):
))
# Determine upgrade messaging
has_premium = plan in ("pro", "enterprise")
has_premium = plan in ("business", "agency", "enterprise")
upgrade_label = None
if plan == "free":
upgrade_label = "Upgrade to Starter for more models and publishing"
upgrade_label = "Upgrade to Starter for more AI models and messaging channels"
elif plan == "starter":
upgrade_label = "Upgrade to Pro for GPT-4o, Claude, Gemini"
upgrade_label = "Upgrade to Business for GPT-4o, Claude, Gemini and WhatsApp"
return ModelsResponse(
models=models,