Spaces:
Sleeping
Sleeping
Tuchuanhuhuhu
commited on
Commit
•
015435f
1
Parent(s):
65dd753
chore: 默认启用使用模型自动给对话起标题的功能(chat_name_method_index)
Browse files- config_example.json +1 -1
- modules/config.py +1 -1
config_example.json
CHANGED
@@ -32,7 +32,7 @@
|
|
32 |
"hide_history_when_not_logged_in": false, //未登录情况下是否不展示对话历史
|
33 |
"check_update": true, //是否启用检查更新
|
34 |
"default_model": "gpt-3.5-turbo", // 默认模型
|
35 |
-
"chat_name_method_index":
|
36 |
"bot_avatar": "default", // 机器人头像,可填写本地或网络图片链接,或者"none"(不显示头像)
|
37 |
"user_avatar": "default", // 用户头像,可填写本地或网络图片链接,或者"none"(不显示头像)
|
38 |
|
|
|
32 |
"hide_history_when_not_logged_in": false, //未登录情况下是否不展示对话历史
|
33 |
"check_update": true, //是否启用检查更新
|
34 |
"default_model": "gpt-3.5-turbo", // 默认模型
|
35 |
+
"chat_name_method_index": 2, // 选择对话名称的方法。0: 使用日期时间命名;1: 使用第一条提问命名,2: 使用模型自动总结
|
36 |
"bot_avatar": "default", // 机器人头像,可填写本地或网络图片链接,或者"none"(不显示头像)
|
37 |
"user_avatar": "default", // 用户头像,可填写本地或网络图片链接,或者"none"(不显示头像)
|
38 |
|
modules/config.py
CHANGED
@@ -51,7 +51,7 @@ hide_history_when_not_logged_in = config.get(
|
|
51 |
check_update = config.get("check_update", True)
|
52 |
show_api_billing = config.get("show_api_billing", False)
|
53 |
show_api_billing = bool(os.environ.get("SHOW_API_BILLING", show_api_billing))
|
54 |
-
chat_name_method_index = config.get("chat_name_method_index",
|
55 |
|
56 |
if os.path.exists("api_key.txt"):
|
57 |
logging.info("检测到api_key.txt文件,正在进行迁移...")
|
|
|
51 |
check_update = config.get("check_update", True)
|
52 |
show_api_billing = config.get("show_api_billing", False)
|
53 |
show_api_billing = bool(os.environ.get("SHOW_API_BILLING", show_api_billing))
|
54 |
+
chat_name_method_index = config.get("chat_name_method_index", 2)
|
55 |
|
56 |
if os.path.exists("api_key.txt"):
|
57 |
logging.info("检测到api_key.txt文件,正在进行迁移...")
|