gigastt 1.0.2

Local STT server powered by GigaAM v3 e2e_rnnt — on-device Russian speech recognition via ONNX Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! ONNX protobuf types, generated at build time from `proto/onnx.proto`.
//!
//! The `.proto` file is vendored in `proto/` (MIT-licensed, copied from
//! <https://github.com/onnx/onnx>). `build.rs` runs `prost-build` on every
//! build; generated code lives under `OUT_DIR/onnx.rs` and is inlined here
//! so callers can write `crate::onnx_proto::ModelProto` instead of a
//! deeper package-qualified path.
//!
//! Replaces `onnx-pb 0.1.4` (unmaintained, pinned to `prost 0.6`).

#![allow(clippy::all)]
#![allow(missing_docs)]

include!(concat!(env!("OUT_DIR"), "/onnx.rs"));