diff --git a/app/config.py b/app/config.py index 35ce919..52caf16 100644 --- a/app/config.py +++ b/app/config.py @@ -78,8 +78,8 @@ PLAN_LIMITS = { "max_chatbots": 3, "max_published": 3, "models": [ - "accounts/fireworks/models/llama-v3p1-70b-instruct", - "accounts/fireworks/models/mixtral-8x7b-instruct", + "accounts/fireworks/models/kimi-k2-instruct-0905", + "accounts/fireworks/models/deepseek-v3p2", "gpt-4o", "gpt-4-turbo", "gpt-3.5-turbo", diff --git a/app/routers/chatbots.py b/app/routers/chatbots.py index f9cf4e4..d7cbe58 100644 --- a/app/routers/chatbots.py +++ b/app/routers/chatbots.py @@ -222,7 +222,7 @@ def _format_chatbot(chatbot: dict, supabase) -> ChatbotResponse: name=chatbot["name"], description=chatbot.get("description"), system_prompt=chatbot.get("system_prompt"), - model=chatbot.get("model", "accounts/fireworks/models/llama-v3p1-70b-instruct"), + model=chatbot.get("model", "accounts/fireworks/models/kimi-k2-instruct-0905"), temperature=chatbot.get("temperature", 0.7), max_tokens=chatbot.get("max_tokens", 1000), primary_color=chatbot.get("primary_color", "#6366f1"),