UNPKG

wechat-bot

Version:
10 lines (7 loc) 274 B
import { xunfeiSendMsg } from './xunfei.js' export async function getXunfeiReply(prompt, name) { console.log('🚀🚀🚀 / prompt', prompt) let reply = await xunfeiSendMsg(prompt) if (typeof name != 'undefined') reply = `@${name}\n ${reply}` return `${reply}` }