20 lines
727 B
Python
20 lines
727 B
Python
from astrbot.api.event import filter, AstrMessageEvent
|
|
from astrbot.api.star import Context, Star, register
|
|
from astrbot.api import logger
|
|
|
|
@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):
|
|
"""可选择实现异步的插件销毁方法,当插件被卸载/停用时会调用。"""
|