fixed bugs

This commit is contained in:
belviskhoremk
2026-02-22 23:24:44 +00:00
parent 5bd496d355
commit 88ca23adde
6 changed files with 1605 additions and 241 deletions

View File

@@ -66,9 +66,9 @@ PLAN_LIMITS = {
"max_chatbots": 999999,
"max_published": 1,
"models": [
"accounts/fireworks/models/llama-v3p1-70b-instruct",
"accounts/fireworks/models/mixtral-8x7b-instruct",
"accounts/fireworks/models/qwen2p5-72b-instruct",
"accounts/fireworks/models/kimi-k2-instruct-0905",
"accounts/fireworks/models/deepseek-v3p2",
"accounts/fireworks/models/glm-4p7",
],
"conversations_limit": 5000,
"code_export": False,
@@ -109,9 +109,9 @@ PLAN_LIMITS = {
}
MODEL_PROVIDERS = {
"accounts/fireworks/models/llama-v3p1-70b-instruct": "fireworks",
"accounts/fireworks/models/mixtral-8x7b-instruct": "fireworks",
"accounts/fireworks/models/qwen2p5-72b-instruct": "fireworks",
"accounts/fireworks/models/kimi-k2-instruct-0905": "fireworks",
"accounts/fireworks/models/deepseek-v3p2": "fireworks",
"accounts/fireworks/models/glm-4p7": "fireworks",
"gpt-4o": "openai",
"gpt-4-turbo": "openai",
"gpt-3.5-turbo": "openai",
@@ -121,7 +121,7 @@ MODEL_PROVIDERS = {
}
DEFAULT_MODELS = {
"starter": "accounts/fireworks/models/llama-v3p1-70b-instruct",
"starter": "accounts/fireworks/models/kimi-k2-instruct-0905",
"pro": "gpt-4o",
"enterprise": "gpt-4o",
}