euhadra 0.3.0

A programmable voice input framework — ASR, LLM refinement, and OS integration as composable adapters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Whisper-large-v3-turbo ONNX adapter.
//!
//! See [`adapter`] for the public `AsrAdapter` + `AsrRuntimeFactory`
//! impls and the high-level decode loop. [`mel`] computes the
//! Whisper-spec log-mel spectrogram and [`tokenizer`] loads the
//! `tokenizers`-format vocabulary plus special-token ids.

pub mod adapter;
pub mod mel;
pub mod tokenizer;

pub use adapter::{WhisperOnnxAdapter, WhisperOnnxConfig, WhisperOnnxFactory};