luis_sys 0.4.5

FFI bindings for Microsoft LUIS API.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Recognition, intent analysis, translation of speech.

pub mod audio;
pub mod builder;
pub mod events;
pub mod recognizer;
pub mod synthesizer;

pub use audio::*;
pub use builder::*;
pub use events::*;
pub use recognizer::*;
pub use synthesizer::*;