mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 21:37:11 +00:00
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
/**
|
|
* 获取机器人框架
|
|
* @returns {'trss'|'miao'}
|
|
*/
|
|
export function getBotFramework () {
|
|
if (Bot.bots) {
|
|
return 'trss'
|
|
}
|
|
return 'miao'
|
|
}
|