diff options
| author | historia <historiavg@proton.me> | 2026-08-28 18:18:47 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-28 18:18:47 -0400 |
| commit | 1487796d74a7b171f2c53c4212e446759d3a4bec (patch) | |
| tree | be0546fe36404a7bc6b98c1a472af574f4b28868 /app/backends/audiocpp/__init__.py | |
| parent | e66eb0e7d4342ae1c58e9bbd341843753be548f0 (diff) | |
| download | tts-audiobook-generator-1487796d74a7b171f2c53c4212e446759d3a4bec.tar.gz | |
feat: offer to download prebuilt mac/win binaries, new macos build fallback if xcode is not installed
Diffstat (limited to 'app/backends/audiocpp/__init__.py')
| -rw-r--r-- | app/backends/audiocpp/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/backends/audiocpp/__init__.py b/app/backends/audiocpp/__init__.py index 02fe967..2bb9cc7 100644 --- a/app/backends/audiocpp/__init__.py +++ b/app/backends/audiocpp/__init__.py @@ -68,6 +68,12 @@ from .build import ( uninstall, update, ) +from .prebuilt import ( + fetch_latest_release, + install_prebuilt, + installed_release, + select_assets, +) from .remote import fetch_server_models, fetch_server_voices from .wizard import ( build_parser, @@ -100,6 +106,9 @@ __all__ = [ # build "find_local_checkout", "find_audiocpp_server_bin", "find_build_script", "apply_ggml_patches", "build_audiocpp", "uninstall", "update", + # prebuilt + "fetch_latest_release", "install_prebuilt", "installed_release", + "select_assets", # remote "fetch_server_models", "fetch_server_voices", # wizard / status |
