Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
取消当前正在进行的由 recognizeElements 发起的识别任务
static cancelRecognize(): Promise<APIResponse<boolean>>;
APIResponse<boolean>
result === true
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; }