-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #933 from Undertone0809/wx_chatbot
add wx-chatbot Use Case
- Loading branch information
Showing
3 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
import time | ||
|
||
import chat_message | ||
import itchat | ||
import pne | ||
from itchat.content import TEXT | ||
from itchat.storage.messagequeue import Message | ||
|
||
from promptulate.utils import logger | ||
|
||
|
||
@itchat.msg_register([TEXT]) | ||
def handler_single_msg(msg: Message): | ||
try: | ||
print(msg) | ||
print("Get a new messsage: {}".format(msg.Content)) | ||
handler.handle(chat_message.ReceiveMessage(msg)) | ||
except NotImplementedError as e: | ||
logger.debug("[WX]single message {} skipped: {}".format(msg["MsgId"], e)) | ||
return None | ||
return None | ||
|
||
|
||
def qrCallback(uuid, status, qrcode): | ||
# logger.debug("qrCallback: {} {}".format(uuid,status)) | ||
if status == "0": | ||
url = f"https://login.weixin.qq.com/l/{uuid}" | ||
|
||
qr_api1 = "https://api.isoyu.com/qr/?m=1&e=L&p=20&url={}".format(url) | ||
qr_api2 = ( | ||
"https://api.qrserver.com/v1/create-qr-code/?size=400×400&data={}".format( | ||
url | ||
) | ||
) | ||
qr_api3 = "https://api.pwmqr.com/qrcode/create/?url={}".format(url) | ||
qr_api4 = "https://my.tv.sohu.com/user/a/wvideo/getQRCode.do?text={}".format( | ||
url | ||
) | ||
print("You can also scan QRCode in any website below:") | ||
print(qr_api3) | ||
print(qr_api4) | ||
print(qr_api2) | ||
print(qr_api1) | ||
|
||
|
||
def startup(): | ||
try: | ||
# itchat.instance.receivingRetryCount = 600 # 修改断线超时时间 | ||
hotReload = False | ||
itchat.auto_login( | ||
enableCmdQR=2, | ||
hotReload=hotReload, | ||
qrCallback=qrCallback, | ||
) | ||
user_id = itchat.instance.storageClass.userName | ||
name = itchat.instance.storageClass.nickName | ||
logger.info( | ||
"Wechat login success, user_id: {}, nickname: {}".format(user_id, name) | ||
) # noqa: E501 | ||
itchat.run() | ||
except Exception as e: | ||
logger.exception(e) | ||
|
||
|
||
class MessageHandler: | ||
def __init__(self): | ||
pass | ||
|
||
def handle(self, msg: chat_message.ReceiveMessage): | ||
receiver = msg.FromUserName | ||
response = pne.chat( | ||
messages=msg.Content, | ||
model="gpt-3.5-turbo", | ||
model_config={ | ||
"api_key": "sk-xxxxxx", | ||
"base_url": "https://api.openai.com/v1", | ||
}, | ||
) | ||
itchat.send(response.result, toUserName=receiver) | ||
|
||
|
||
handler = MessageHandler() | ||
|
||
|
||
if __name__ == "__main__": | ||
startup() | ||
while True: | ||
time.sleep(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
from itchat.storage.messagequeue import Message | ||
|
||
|
||
class ChatMessage(object): | ||
MsgId = None | ||
FromUSerName = None | ||
|
||
ToUserName = None | ||
Content = None | ||
MsgType = None | ||
Status = None | ||
ImgStatus = None | ||
CreateTime = None | ||
VoiceLength = None | ||
PlayLength = None | ||
FileName = None | ||
FileSize = None | ||
Url = None | ||
from_user_id = None | ||
from_user_nickname = None | ||
to_user_id = None | ||
to_user_nickname = None | ||
other_user_id = None | ||
other_user_nickname = None | ||
my_msg = False | ||
self_display_name = None | ||
|
||
is_group = False | ||
is_at = False | ||
actual_user_id = None | ||
actual_user_nickname = None | ||
at_list = None | ||
|
||
_prepare_fn = None | ||
_prepared = False | ||
_rawmsg = None | ||
|
||
|
||
class ReceiveMessage(ChatMessage): | ||
FromUserName = None | ||
|
||
def __init__(self, msg: Message): | ||
self.msg = msg | ||
for key, value in self.msg.items(): | ||
setattr(self, key, value) | ||
|
||
def __str__(self): | ||
result = "[ReceiveMessage]" | ||
for key, value in vars(self).items(): | ||
result += "{}: {}\n".format(key, value) | ||
return result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
itchat-uos == 1.4.1 |