feat: 更新免费版订阅计划以提供更多对话轮次和无章节限制
- 将免费版的对话轮次从 50 增加至 500,并移除章节限制,提升用户体验。 - 更新相关注释以反映新的订阅计划内容。
This commit is contained in:
@@ -40,7 +40,7 @@ class CurrentPlanResponse(BaseModel):
|
|||||||
|
|
||||||
|
|
||||||
# 预定义的订阅计划
|
# 预定义的订阅计划
|
||||||
# 免费版:50 轮对话 + 1 个章节整理
|
# 免费版:500 轮对话 + 无章节限制
|
||||||
# Pro:88 元,2000 轮对话,无章节限制
|
# Pro:88 元,2000 轮对话,无章节限制
|
||||||
# Pro+:288 元,10000 轮对话,无章节限制
|
# Pro+:288 元,10000 轮对话,无章节限制
|
||||||
AVAILABLE_PLANS = [
|
AVAILABLE_PLANS = [
|
||||||
@@ -51,12 +51,12 @@ AVAILABLE_PLANS = [
|
|||||||
price=0.0,
|
price=0.0,
|
||||||
currency="CNY",
|
currency="CNY",
|
||||||
features=[
|
features=[
|
||||||
"50 轮对话",
|
"500 轮对话",
|
||||||
"1 个章节整理(所有对话整理到一个章节)",
|
"无章节限制",
|
||||||
"体验回忆录生成流程"
|
"完整回忆录生成流程"
|
||||||
],
|
],
|
||||||
max_conversations=50,
|
max_conversations=500,
|
||||||
max_chapters=1,
|
max_chapters=None,
|
||||||
max_words=None,
|
max_words=None,
|
||||||
is_popular=False
|
is_popular=False
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user