Skip to content

模块 nonebot_plugin_marshoai.tools.marshoai_basic


async func get_weather(location: str)

源代码在GitHub上查看
python
async def get_weather(location: str):
    return f'{location}的温度是114514℃。'

async func get_current_env()

源代码在GitHub上查看
python
async def get_current_env():
    ver = os.popen('uname -a').read()
    return str(ver)

async func get_current_time()

源代码在GitHub上查看
python
async def get_current_time():
    current_time = DateTime.now()
    return time_prompt.format(date_time=current_time.strftime('%Y年%m月%d日 %H:%M:%S'), weekday_name=weekdays[current_time.weekday()], lunar_date=current_time.to_lunar().date_hanzify('{干支年}{生肖}{月份}{日期}日'))

文档完善中,欢迎提出建议或帮助我们完善。