LICENSE
README.md
pyproject.toml
src/lunavox/__init__.py
src/lunavox/__main__.py
src/lunavox.egg-info/PKG-INFO
src/lunavox.egg-info/SOURCES.txt
src/lunavox.egg-info/dependency_links.txt
src/lunavox.egg-info/entry_points.txt
src/lunavox.egg-info/requires.txt
src/lunavox.egg-info/top_level.txt
src/lunavox/build/__init__.py
src/lunavox/build/base.py
src/lunavox/build/context.py
src/lunavox/build/lib_downloader.py
src/lunavox/build/libs.json
src/lunavox/build/linux.py
src/lunavox/build/macos.py
src/lunavox/build/main.py
src/lunavox/build/windows.py
src/lunavox/cli/__init__.py
src/lunavox/cli/_common.py
src/lunavox/cli/_config.py
src/lunavox/cli/bootstrap_cmd.py
src/lunavox/cli/build_cmd.py
src/lunavox/cli/doctor_cmd.py
src/lunavox/cli/gui_cmd.py
src/lunavox/cli/main.py
src/lunavox/cli/model_cmd.py
src/lunavox/cli/serve_cmd.py
src/lunavox/cli/synth_cmd.py
src/lunavox/core/__init__.py
src/lunavox/core/deps.py
src/lunavox/core/logging.py
src/lunavox/core/platform.py
src/lunavox/core/project.py
src/lunavox/core/stats_schema.py
src/lunavox/core/ui.py
src/lunavox/core/synth/__init__.py
src/lunavox/core/synth/audio.py
src/lunavox/core/synth/pipeline.py
src/lunavox/core/synth/voice_spec.py
src/lunavox/core/text/__init__.py
src/lunavox/core/text/punctuation.py
src/lunavox/core/text/splitter.py
src/lunavox/core/text/streaming.py
src/lunavox/gui/__init__.py
src/lunavox/gui/app.py
src/lunavox/gui/engine_session.py
src/lunavox/gui/i18n.py
src/lunavox/gui/lib_info.py
src/lunavox/gui/theme.py
src/lunavox/gui/voice_presets.py
src/lunavox/gui/views/__init__.py
src/lunavox/gui/views/library_view.py
src/lunavox/gui/views/settings_view.py
src/lunavox/gui/views/synth_view.py
src/lunavox/gui/widgets/__init__.py
src/lunavox/gui/widgets/conversion_dialog.py
src/lunavox/gui/widgets/param_slider.py
src/lunavox/gui/widgets/stats_card.py
src/lunavox/gui/widgets/voice_picker.py
src/lunavox/model/__init__.py
src/lunavox/model/config.py
src/lunavox/model/downloader.py
src/lunavox/model/pipeline.py
src/lunavox/model/profile.py
src/lunavox/model/conversion/__init__.py
src/lunavox/model/conversion/convert_talker_predictor_llama.py
src/lunavox/model/conversion/convert_tts_to_gguf.py
src/lunavox/model/conversion/export_embeddings.py
src/lunavox/model/conversion/export_onnx_models.py
src/lunavox/model/conversion/inspect_models.py
src/lunavox/model/conversion/onnx_export_wrappers.py
src/lunavox/model/conversion/speaker_encoder_local.py
src/lunavox/model/conversion/validate_onnx_models.py
src/lunavox/model/conversion/hf_export/__init__.py
src/lunavox/model/conversion/hf_export/convert_hf_to_gguf.py
src/lunavox/model/conversion/hf_export/gguf/__init__.py
src/lunavox/model/conversion/hf_export/gguf/constants.py
src/lunavox/model/conversion/hf_export/gguf/gguf.py
src/lunavox/model/conversion/hf_export/gguf/gguf_reader.py
src/lunavox/model/conversion/hf_export/gguf/gguf_writer.py
src/lunavox/model/conversion/hf_export/gguf/lazy.py
src/lunavox/model/conversion/hf_export/gguf/metadata.py
src/lunavox/model/conversion/hf_export/gguf/py.typed
src/lunavox/model/conversion/hf_export/gguf/quants.py
src/lunavox/model/conversion/hf_export/gguf/tensor_mapping.py
src/lunavox/model/conversion/hf_export/gguf/utility.py
src/lunavox/model/conversion/hf_export/gguf/vocab.py
src/lunavox/model/conversion/hf_export/gguf/scripts/gguf_convert_endian.py
src/lunavox/model/conversion/hf_export/gguf/scripts/gguf_dump.py
src/lunavox/model/conversion/hf_export/gguf/scripts/gguf_editor_gui.py
src/lunavox/model/conversion/hf_export/gguf/scripts/gguf_hash.py
src/lunavox/model/conversion/hf_export/gguf/scripts/gguf_new_metadata.py
src/lunavox/model/conversion/hf_export/gguf/scripts/gguf_set_metadata.py
src/lunavox/model/conversion/hf_export/tokenizer_12hz/__init__.py
src/lunavox/model/conversion/hf_export/tokenizer_12hz/configuration_qwen3_tts_tokenizer_v2.py
src/lunavox/model/conversion/hf_export/tokenizer_12hz/modeling_qwen3_tts_tokenizer_v2.py
src/lunavox/model/conversion/hf_export/tokenizer_12hz/internal/__init__.py
src/lunavox/model/conversion/hf_export/tokenizer_12hz/internal/configuration_mimi.py
src/lunavox/model/conversion/hf_export/tokenizer_12hz/internal/modeling_mimi.py
src/lunavox/runtime/__init__.py
src/lunavox/runtime/_capi.py
src/lunavox/runtime/batch_engine.py
src/lunavox/runtime/engine.py
src/lunavox/runtime/errors.py
src/lunavox/runtime/params.py
src/lunavox/runtime/voice.py
src/lunavox/serve/__init__.py
src/lunavox/serve/auto_batch.py
src/lunavox/serve/engine_holder.py
src/lunavox/serve/metrics.py
src/lunavox/serve/schemas.py
src/lunavox/serve/server.py
tests/test_binding_structs.py
tests/test_cli_config.py
tests/test_cli_smoke.py
tests/test_convert_hf_to_gguf_registry.py
tests/test_core_synth_audio.py
tests/test_core_synth_pipeline.py
tests/test_core_synth_voice_spec.py
tests/test_core_text_punctuation.py
tests/test_core_text_splitter.py
tests/test_core_text_streaming.py
tests/test_deps.py
tests/test_gui_engine_session.py
tests/test_gui_imports.py
tests/test_gui_stats_card_ttfb.py
tests/test_gui_widgets.py
tests/test_libs_manifest.py
tests/test_model_config.py
tests/test_platform.py
tests/test_project.py
tests/test_runtime_batch_engine.py
tests/test_runtime_params.py
tests/test_runtime_voice.py
tests/test_serve_app.py
tests/test_serve_auto_batch.py
tests/test_serve_metrics.py
tests/test_serve_schemas.py
tests/test_stats_schema.py