feat(quota management): add end-user quota check for shared conversations

fix(default free plan): adjust free plan quota limits

feat(application service): add functionality to reset Agent model parameters to default values
This commit is contained in:
wxy
2026-04-16 19:35:52 +08:00
parent 915cb54f21
commit f883c1469d
5 changed files with 97 additions and 8 deletions

View File

@@ -22,14 +22,14 @@ DEFAULT_FREE_PLAN = {
"page_customization_en": "None",
"theme_color": "#64748B",
"quotas": {
"workspace_quota": 1,
"skill_quota": 5,
"app_quota": 2,
"knowledge_capacity_quota": 0.3,
"memory_engine_quota": 1,
"end_user_quota": 1,
"ontology_project_quota": 3,
"model_quota": 1,
"workspace_quota": 10,
"skill_quota": 50,
"app_quota": 20,
"knowledge_capacity_quota": 30,
"memory_engine_quota": 10,
"end_user_quota": 50,
"ontology_project_quota": 30,
"model_quota": 10,
"api_ops_rate_limit": 50,
},
}