gitextract_2q213gax/ ├── .github/ │ ├── FUNDING.yml │ ├── RELEASING.md │ ├── release_notes.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── CMakeLists.txt ├── Justfile ├── LICENSE.txt ├── README.md ├── building/ │ ├── build-wheel-dockcross.sh │ ├── dockcross-manylinux2010-x64 │ └── kaldi-configure-wrapper.sh ├── docs/ │ └── models.md ├── examples/ │ ├── audio.py │ ├── full_example.py │ ├── mix_dictation.py │ ├── plain_dictation.py │ ├── requirements_audio.txt │ └── util.py ├── kaldi_active_grammar/ │ ├── LICENSE.txt │ ├── __init__.py │ ├── __main__.py │ ├── compiler.py │ ├── defaults.py │ ├── ffi.py │ ├── kaldi/ │ │ ├── COPYING │ │ ├── __init__.py │ │ ├── augment_phones_txt.py │ │ ├── augment_phones_txt_py2.py │ │ ├── augment_words_txt.py │ │ ├── augment_words_txt_py2.py │ │ ├── make_lexicon_fst.py │ │ └── make_lexicon_fst_py2.py │ ├── model.py │ ├── plain_dictation.py │ ├── utils.py │ ├── wfst.py │ └── wrapper.py ├── pyproject.toml ├── requirements-build.txt ├── requirements-editable.txt ├── requirements-test.txt ├── setup.cfg ├── setup.py └── tests/ ├── conftest.py ├── generate_google_tts.py ├── generate_piper_tts.py ├── helpers.py ├── run_each_test_separately.py ├── test_grammar.py ├── test_package.py └── test_plain_dictation.py