@zoe-ng/stt
v0.1.8
Published
Zoe Speech-to-Text SDK with built-in backend refinement
Maintainers
Readme
@zoe-ng/stt
Zoe Speech-to-Text SDK for browsers. Captures speech using the Web Speech API and sends transcripts to the Zoe backend for refinement.
Installation
npm install @zoe-ng/sttUsage
import { ZoeSTT } from "@zoe-ng/stt";
const stt = new ZoeSTT();
stt.onPartial((t) => console.log("Partial:", t));
stt.onFinal((t) => console.log("Final:", t));
stt.start();Features
- Uses the browser's Web Speech API
- Automatically refines speech via the Zoe backend
- Provides both live partial and final refined text
- Works instantly without setup
