loadModelFromFilePathRaw method

Future<Map> loadModelFromFilePathRaw({
  1. required String filePath,
})

By Azkadev before you transcribe please call this loadModelFromFilePathRaw

Implementation

Future<Map> loadModelFromFilePathRaw({
  required final String filePath,
}) async {
  return await _invoke({
    "@type": "loadModelFromFilePathWhisperGplByAzkadevNative",
    "whisper_model_file_path": filePath,
  });
}