import { PluginCommAPI } from 'sn-plugin-lib';
export async function exampleCancelRecognize() {
const res = await PluginCommAPI.cancelRecognize();
if (!res.success) {
throw new Error(res.error?.message ?? 'cancelRecognize 调用失败');
}
return res.result;
}