sayd-core 0.1.0

Engine for the sayd speech daemon: queue, chunking, text cleanup, config
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! sayd's engine: queue, chunking, text cleanup, config and the state
//! machine that drives them.
//!
//! This crate deliberately depends on neither ONNX nor an audio backend nor
//! D-Bus. Synthesis reaches it through the `Synthesizer` trait and audio
//! through `AudioSink`, so the whole engine can be driven in a unit test.

pub mod audio;
pub mod config;
pub mod cleanup;
pub mod chunk;
pub mod synth;
pub mod queue;
pub mod engine;
pub mod handle;