Merge branch 'master' of https://github.com/Soulter/QQChannelChatGPT
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
[](https://github.com/Soulter/QQChannelChatGPT/blob/master/LICENSE)
|
||||
 -->
|
||||
|
||||
基于go-cq和官方QQ频道SDK的机器人项目。支持ChatGPT、NewBing等大模型。一次部署,同时使用
|
||||
基于go-cqhttp和官方QQ频道SDK的QQ机器人项目。支持ChatGPT、Claude、HuggingChat大模型。一次部署,同时使用。
|
||||
|
||||
部署文档:https://github.com/Soulter/QQChannelChatGPT/wiki
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
## 🧩功能:
|
||||
|
||||
近期新功能:
|
||||
- 接入Claude、HuggingChat。
|
||||
- Markdown渲染支持:回复消息支持图片。
|
||||
- 支持插件。https://github.com/Soulter/QQChannelChatGPT/wiki/%E5%9B%9B%E3%80%81%E5%BC%80%E5%8F%91%E6%8F%92%E4%BB%B6
|
||||
- 热更新
|
||||
- 接入QQ,支持在QQ上和QQ频道上同时聊天!https://github.com/Soulter/QQChannelChatGPT/issues/82
|
||||
- Windows启动器。链接:https://github.com/Soulter/QQChatGPTLauncher/releases/latest
|
||||
|
||||
支持的AI语言模型(请在`configs/config.yaml`下配置):
|
||||
支持的AI语言模型:
|
||||
- 逆向ChatGPT
|
||||
- 官方ChatGPT API
|
||||
- Bing **暂时不可用**
|
||||
- Claude
|
||||
- HuggingChat
|
||||
- Bing
|
||||
- ...
|
||||
<!--
|
||||
### 基本功能
|
||||
@@ -99,10 +102,10 @@
|
||||
|
||||
插件开发教程:https://github.com/Soulter/QQChannelChatGPT/wiki/%E5%9B%9B%E3%80%81%E5%BC%80%E5%8F%91%E6%8F%92%E4%BB%B6
|
||||
|
||||
部分好用的插件:
|
||||
|
||||
- `HuggingChat`: https://github.com/Soulter/HuggingChatForQQBot | HuggingChat模型接入
|
||||
部分公开的插件:
|
||||
|
||||
- `LLMS`: https://github.com/Soulter/LLMS | Claude, HuggingChat 大语言模型接入。
|
||||
|
||||
- `GoodPlugins`: https://github.com/Soulter/goodplugins | 随机动漫图片、搜番、喜报生成器等等
|
||||
|
||||
- `sysstat`: https://github.com/Soulter/sysstatqcbot | 查看系统状态
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import os, sys
|
||||
from pip._internal import main as pipmain
|
||||
import util.general_utils as gu
|
||||
|
||||
abs_path = os.path.dirname(os.path.realpath(sys.argv[0])) + '/'
|
||||
|
||||
@@ -14,7 +13,7 @@ def main():
|
||||
print(e)
|
||||
input("第三方依赖库未完全安装完毕,请退出程序重试。")
|
||||
exit()
|
||||
|
||||
import util.general_utils as gu
|
||||
if 'http_proxy' in cfg:
|
||||
os.environ['HTTP_PROXY'] = cfg['http_proxy']
|
||||
if 'https_proxy' in cfg:
|
||||
@@ -119,4 +118,4 @@ if __name__ == "__main__":
|
||||
except BaseException as e:
|
||||
print(e)
|
||||
print(f"[System-err] Replit Web保活服务启动失败:{str(e)}")
|
||||
main()
|
||||
main()
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
pydantic~=1.10.4
|
||||
requests~=2.28.1
|
||||
openai~=0.27.4
|
||||
qq-botpy~=1.1.2
|
||||
|
||||
Reference in New Issue
Block a user