remove: vpet

This commit is contained in:
Soulter
2025-05-23 14:22:34 +08:00
parent 6a3e04d688
commit 0b0e4ce904
-18
View File
@@ -1,18 +0,0 @@
from astrbot.api.event import filter, AstrMessageEvent
from astrbot.api.star import Context, Star, register
@register("vpet", "AstrBot Team", "虚拟桌宠", "0.0.1")
class VPet(Star):
def __init__(self, context: Context):
super().__init__(context)
async def initialize(self):
"""可选择实现异步的插件初始化方法,当实例化该插件类之后会自动调用该方法。"""
@filter.llm_tool("screenshot")
async def screenshot(self, event: AstrMessageEvent):
"""Capture the screen and return the image."""
async def terminate(self):
"""可选择实现异步的插件销毁方法,当插件被卸载/停用时会调用。"""