mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-05-17 01:56:47 +08:00
8093fcc64c
1、类型定义中使用了驼峰,但其他位置使用的大写 2、微信channel中,发送IMAGE,多余了seek方法
32 lines
708 B
Python
32 lines
708 B
Python
# encoding:utf-8
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class ReplyType(Enum):
|
|
TEXT = 1 # 文本
|
|
VOICE = 2 # 音频文件
|
|
IMAGE = 3 # 图片文件
|
|
IMAGE_URL = 4 # 图片URL
|
|
VIDEO_URL = 5 # 视频URL
|
|
FILE = 6 # 文件
|
|
CARD = 7 # 微信名片,仅支持ntchat
|
|
INVITE_ROOM = 8 # 邀请好友进群
|
|
INFO = 9
|
|
ERROR = 10
|
|
TEXT_ = 11 # 强制文本
|
|
VIDEO = 12
|
|
MINIAPP = 13 # 小程序
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
|
|
class Reply:
|
|
def __init__(self, type: ReplyType = None, content=None):
|
|
self.type = type
|
|
self.content = content
|
|
|
|
def __str__(self):
|
|
return "Reply(type={}, content={})".format(self.type, self.content)
|