mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-16 19:57:04 +08:00
17 lines
422 B
Python
17 lines
422 B
Python
import re
|
|
|
|
|
|
def ignore(msg: str) -> bool:
|
|
"""检查消息是否应该被忽略"""
|
|
import config
|
|
|
|
if 'prefix' in config.ignore_rules:
|
|
for rule in config.ignore_rules['prefix']:
|
|
if msg.startswith(rule):
|
|
return True
|
|
|
|
if 'regexp' in config.ignore_rules:
|
|
for rule in config.ignore_rules['regexp']:
|
|
if re.search(rule, msg):
|
|
return True
|