LiteyukiBot-TriM/unused_plugin/liteyuki_smart_reply/utils.py
2024-07-18 03:22:33 +08:00

14 lines
219 B
Python

from jieba import lcut
from nonebot.utils import run_sync
@run_sync
def get_keywords(text: str) -> list[str, ...]:
"""
获取关键词
Args:
text: 文本
Returns:
"""
return lcut(text)