mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2024-12-02 10:14:53 +08:00
修复拼写错误,但未修复Linux ssl错误
This commit is contained in:
parent
f7932ec1fc
commit
4b12424221
@ -275,7 +275,7 @@ async def marsho(target: MsgTarget, event: Event, text: Optional[UniMsg] = None)
|
||||
target_list.append([target.id, target.private])
|
||||
|
||||
# 对话成功发送消息
|
||||
if config.marshoai_enable_richtext_prase:
|
||||
if config.marshoai_enable_richtext_parse:
|
||||
await (await parse_richtext(str(choice.message.content))).send(
|
||||
reply_to=True
|
||||
)
|
||||
@ -333,7 +333,7 @@ async def marsho(target: MsgTarget, event: Event, text: Optional[UniMsg] = None)
|
||||
context.append(choice.message.as_dict(), target.id, target.private)
|
||||
|
||||
# 发送消息
|
||||
if config.marshoai_enable_richtext_prase:
|
||||
if config.marshoai_enable_richtext_parse:
|
||||
await (await parse_richtext(str(choice.message.content))).send(
|
||||
reply_to=True
|
||||
)
|
||||
|
@ -42,7 +42,7 @@ CODE_BLOCK_PATTERN = re.compile(r"```(.*?)```|`(.*?)`", re.DOTALL)
|
||||
IMG_LATEX_PATTERN = re.compile(
|
||||
(
|
||||
r"(!\[[^\]]*\]\([^()]*\))|(\\begin\{equation\}.*?\\end\{equation\}|\$.*?\$|\$\$.*?\$\$|\\\[.*?\\\]|\\\(.*?\\\))"
|
||||
if config.marshoai_single_latex_prase
|
||||
if config.marshoai_single_latex_parse
|
||||
else r"(!\[[^\]]*\]\([^()]*\))|(\\begin\{equation\}.*?\\end\{equation\}|\$\$.*?\$\$|\\\[.*?\\\])"
|
||||
),
|
||||
re.DOTALL,
|
||||
|
@ -52,6 +52,7 @@ class L2PChannel(ConvertChannel):
|
||||
|
||||
async with httpx.AsyncClient(
|
||||
timeout=timeout,
|
||||
verify=False,
|
||||
) as client:
|
||||
while retry > 0:
|
||||
try:
|
||||
@ -88,7 +89,7 @@ class L2PChannel(ConvertChannel):
|
||||
|
||||
@staticmethod
|
||||
def channel_test() -> int:
|
||||
with httpx.Client(timeout=5) as client:
|
||||
with httpx.Client(timeout=5,verify=False) as client:
|
||||
try:
|
||||
start_time = time.time_ns()
|
||||
latex2png = (
|
||||
@ -128,6 +129,7 @@ class CDCChannel(ConvertChannel):
|
||||
) -> Tuple[Literal[True], bytes] | Tuple[Literal[False], bytes | str]:
|
||||
async with httpx.AsyncClient(
|
||||
timeout=timeout,
|
||||
verify=False,
|
||||
) as client:
|
||||
|
||||
while retry > 0:
|
||||
@ -153,7 +155,7 @@ class CDCChannel(ConvertChannel):
|
||||
|
||||
@staticmethod
|
||||
def channel_test() -> int:
|
||||
with httpx.Client(timeout=5) as client:
|
||||
with httpx.Client(timeout=5,verify=False) as client:
|
||||
try:
|
||||
start_time = time.time_ns()
|
||||
codecogs = (
|
||||
@ -185,6 +187,7 @@ class JRTChannel(ConvertChannel):
|
||||
|
||||
async with httpx.AsyncClient(
|
||||
timeout=timeout,
|
||||
verify=False,
|
||||
) as client:
|
||||
while retry > 0:
|
||||
try:
|
||||
@ -219,7 +222,7 @@ class JRTChannel(ConvertChannel):
|
||||
|
||||
@staticmethod
|
||||
def channel_test() -> int:
|
||||
with httpx.Client(timeout=5) as client:
|
||||
with httpx.Client(timeout=5,verify=False) as client:
|
||||
try:
|
||||
start_time = time.time_ns()
|
||||
joeraut = (
|
||||
|
@ -282,7 +282,7 @@ MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||
See the Mulan PSL v2 for more details.
|
||||
"""
|
||||
|
||||
if config.marshoai_enable_richtext_prase:
|
||||
if config.marshoai_enable_richtext_parse:
|
||||
|
||||
latex_convert = ConvertLatex() # 开启一个转换实例
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user