Bladeren bron

fix: #6 #7 prefix match bug, python version, config template

master
zhayujie 1 jaar geleden
bovenliggende
commit
3a7400a7ae
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. +1
    -1
      README.md
  2. +1
    -1
      channel/wechat/wechat_channel.py
  3. +1
    -1
      config-template.json

+ 1
- 1
README.md Bestand weergeven

@@ -47,7 +47,7 @@

### 2.运行环境

支持运行在 Linux、MacOS、Windows 系统上,且安装有 `Python`(版本在 3.7.1 以上),推荐使用Linux服务器,可托管于后台长期运行。
支持运行在 Linux、MacOS、Windows 系统上,且安装有 `Python`(版本在 3.7.1 ~ 3.9.X 之间),推荐使用Linux服务器,可托管于后台长期运行。

1.克隆项目代码:



+ 1
- 1
channel/wechat/wechat_channel.py Bestand weergeven

@@ -149,6 +149,6 @@ class WechatChannel(Channel):

def check_prefix(self, content, prefix_list):
for prefix in prefix_list:
if content.lower().startswith(prefix):
if content.lower().startswith(prefix.lower()):
return prefix
return None

+ 1
- 1
config-template.json Bestand weergeven

@@ -1,5 +1,5 @@
{
"open_ai_api_key": "${YOUR API KEY}$",
"open_ai_api_key": "YOUR API KEY",
"single_chat_prefix": ["bt", "@bt"],
"single_chat_reply_prefix": "[bot] ",
"group_chat_prefix": ["@bt"],


Laden…
Annuleren
Opslaan