()
| 62 | }; |
| 63 | |
| 64 | const handleAudioEmbed = async () => { |
| 65 | if (!audioFile) { |
| 66 | return; |
| 67 | } |
| 68 | const embedResult = await cactusSTT.audioEmbed({ |
| 69 | audioPath: audioFile, |
| 70 | }); |
| 71 | setEmbeddingResult(embedResult); |
| 72 | }; |
| 73 | |
| 74 | const handleStop = () => { |
| 75 | cactusSTT.stop(); |
nothing calls this directly
no test coverage detected