chore/ 删除无用文件

This commit is contained in:
Kevin
2026-03-19 14:36:14 +08:00
parent 2f60858c9c
commit c6e07ce5ca
135 changed files with 2111 additions and 4510 deletions

View File

@@ -11,28 +11,43 @@ ENABLE_TEST_PLAN = (settings.enable_test_plan or "").lower() in ("1", "true", "y
AVAILABLE_PLANS = [
PlanResponse(
id="free", name="free", display_name="免费体验版",
price=0.0, currency="CNY",
id="free",
name="free",
display_name="免费体验版",
price=0.0,
currency="CNY",
features=["500 轮对话", "无章节限制", "完整回忆录生成流程"],
max_conversations=500, is_popular=False,
max_conversations=500,
is_popular=False,
),
PlanResponse(
id="pro", name="pro", display_name="Pro 版",
price=88.0, currency="CNY",
id="pro",
name="pro",
display_name="Pro 版",
price=88.0,
currency="CNY",
features=["2000 轮对话", "无章节限制", "完整回忆录生成"],
max_conversations=2000, is_popular=True,
max_conversations=2000,
is_popular=True,
),
PlanResponse(
id="pro_plus", name="pro_plus", display_name="Pro+ 版",
price=288.0, currency="CNY",
id="pro_plus",
name="pro_plus",
display_name="Pro+ 版",
price=288.0,
currency="CNY",
features=["10000 轮对话", "无章节限制", "完整回忆录生成", "长期创作无忧"],
max_conversations=10000, is_popular=False,
max_conversations=10000,
is_popular=False,
),
]
TEST_PLAN = PlanResponse(
id="test", name="test", display_name="一分钱测试版",
price=0.01, currency="CNY",
id="test",
name="test",
display_name="一分钱测试版",
price=0.01,
currency="CNY",
features=["无限对话", "无限章节整理", "仅用于开发环境测试支付"],
is_popular=False,
)