async def _(session: CommandSession):
    Load_Reply.del_key(key_str = session.current_arg_text.strip())
    await session.send(f"已删除共有关键词{session.current_arg_text.strip()}")
async def _(session: CommandSession):
    ctx_id = context_id(session.event)
    Load_Reply.del_key(ctx_id = ctx_id,key_str = session.current_arg_text.strip())
    await session.send(f"已删除私有关键词{session.current_arg_text.strip()}")