From db7d5dcce38650520c70b8a641bc8ef8559cd01f Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Sun, 17 Nov 2024 20:35:39 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=BF=E6=8D=A2=E5=A4=9A=E5=A4=84?= =?UTF-8?q?=20qchatgpt.rockchin.top?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 16 ++++++++-------- pkg/core/stages/load_config.py | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 4c74fad6..81b153f0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

-QChatGPT +QChatGPT

@@ -12,7 +12,7 @@ docker pull - ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.qchatgpt.rockchin.top%2Fapi%2Fv2%2Fview%2Frealtime%2Fcount_query%3Fminute%3D10080&query=%24.data.count&label=%E4%BD%BF%E7%94%A8%E9%87%8F%EF%BC%887%E6%97%A5%EF%BC%89) + ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.docs.langbot.app%2Fapi%2Fv2%2Fview%2Frealtime%2Fcount_query%3Fminute%3D10080&query=%24.data.count&label=%E4%BD%BF%E7%94%A8%E9%87%8F%EF%BC%887%E6%97%A5%EF%BC%89) ![Wakapi Count](https://wakapi.rockchin.top/api/badge/RockChinQ/interval:any/project:QChatGPT)
python @@ -28,11 +28,11 @@ ## 使用文档 -项目主页 | -功能介绍 | -部署文档 | -常见问题 | -插件介绍 | +项目主页 | +功能介绍 | +部署文档 | +常见问题 | +插件介绍提交插件 ## 相关链接 @@ -51,5 +51,5 @@ https://3.cn/24A-2NXd
-回复效果(带有联网插件) +回复效果(带有联网插件) diff --git a/pkg/core/stages/load_config.py b/pkg/core/stages/load_config.py index 732833f5..cc154a7c 100644 --- a/pkg/core/stages/load_config.py +++ b/pkg/core/stages/load_config.py @@ -31,7 +31,7 @@ class LoadConfigStage(stage.BootingStage): description="命令配置", manager=ap.command_cfg, schema=schema.CONFIG_COMMAND_SCHEMA, - doc_link="https://qchatgpt.rockchin.top/config/function/command.html" + doc_link="https://docs.langbot.app/config/function/command.html" ) ap.settings_mgr.register_manager( @@ -39,7 +39,7 @@ class LoadConfigStage(stage.BootingStage): description="消息处理流水线配置", manager=ap.pipeline_cfg, schema=schema.CONFIG_PIPELINE_SCHEMA, - doc_link="https://qchatgpt.rockchin.top/config/function/pipeline.html" + doc_link="https://docs.langbot.app/config/function/pipeline.html" ) ap.settings_mgr.register_manager( @@ -47,7 +47,7 @@ class LoadConfigStage(stage.BootingStage): description="消息平台配置", manager=ap.platform_cfg, schema=schema.CONFIG_PLATFORM_SCHEMA, - doc_link="https://qchatgpt.rockchin.top/config/function/platform.html" + doc_link="https://docs.langbot.app/config/function/platform.html" ) ap.settings_mgr.register_manager( @@ -55,7 +55,7 @@ class LoadConfigStage(stage.BootingStage): description="大模型能力配置", manager=ap.provider_cfg, schema=schema.CONFIG_PROVIDER_SCHEMA, - doc_link="https://qchatgpt.rockchin.top/config/function/provider.html" + doc_link="https://docs.langbot.app/config/function/provider.html" ) ap.settings_mgr.register_manager( @@ -63,7 +63,7 @@ class LoadConfigStage(stage.BootingStage): description="系统配置", manager=ap.system_cfg, schema=schema.CONFIG_SYSTEM_SCHEMA, - doc_link="https://qchatgpt.rockchin.top/config/function/system.html" + doc_link="https://docs.langbot.app/config/function/system.html" ) ap.plugin_setting_meta = await config.load_json_config("plugins/plugins.json", "templates/plugin-settings.json")