Next-generation speech recognition model achieving dramatically lower hallucination rates than Whisper v2. Provides structured output, timestamp granularity, and logprob-based confidence scores with streaming support.
Transcript will appear here in real-time as you speak…
90% reduction in hallucinated text compared to Whisper v2
Logprob-based confidence scoring for every transcribed segment
Native structured output eliminates post-processing pipelines
Transcribe meetings in real-time with speaker identification and punctuation.
Analyze customer calls at scale with sentiment detection and keyword spotting.
Convert audio and video libraries into searchable text archives.
Provide real-time captions for broadcasts, presentations, and live events.
// gpt-4o-mini-transcribe — Speech-to-Text
import { transcribe } from "@arkitekton/voice";
const result = await transcribe({
model: "vm-oai-003",
vendor: "openai",
audio: audioFile,
language: "en",
options: {
punctuate: true,
diarize: true,
smart_format: true,
},
});
console.log("Transcript:", result.text);
console.log("Confidence:", result.confidence);Foundation models for real-time voice and transcription