voice-mode 2.26.0__py3-none-any.whl → 2.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- voice_mode/__version__.py +1 -1
- voice_mode/cli.py +730 -7
- voice_mode/cli_commands/exchanges.py +6 -0
- voice_mode/config.py +11 -3
- voice_mode/frontend/.next/BUILD_ID +1 -1
- voice_mode/frontend/.next/app-build-manifest.json +5 -5
- voice_mode/frontend/.next/build-manifest.json +3 -3
- voice_mode/frontend/.next/next-minimal-server.js.nft.json +1 -1
- voice_mode/frontend/.next/next-server.js.nft.json +1 -1
- voice_mode/frontend/.next/prerender-manifest.json +1 -1
- voice_mode/frontend/.next/required-server-files.json +1 -1
- voice_mode/frontend/.next/server/app/_not-found/page.js +1 -1
- voice_mode/frontend/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- voice_mode/frontend/.next/server/app/_not-found.html +1 -1
- voice_mode/frontend/.next/server/app/_not-found.rsc +1 -1
- voice_mode/frontend/.next/server/app/api/connection-details/route.js +2 -2
- voice_mode/frontend/.next/server/app/favicon.ico/route.js +2 -2
- voice_mode/frontend/.next/server/app/index.html +1 -1
- voice_mode/frontend/.next/server/app/index.rsc +2 -2
- voice_mode/frontend/.next/server/app/page.js +3 -3
- voice_mode/frontend/.next/server/app/page_client-reference-manifest.js +1 -1
- voice_mode/frontend/.next/server/chunks/994.js +1 -1
- voice_mode/frontend/.next/server/middleware-build-manifest.js +1 -1
- voice_mode/frontend/.next/server/next-font-manifest.js +1 -1
- voice_mode/frontend/.next/server/next-font-manifest.json +1 -1
- voice_mode/frontend/.next/server/pages/404.html +1 -1
- voice_mode/frontend/.next/server/pages/500.html +1 -1
- voice_mode/frontend/.next/server/server-reference-manifest.json +1 -1
- voice_mode/frontend/.next/standalone/.next/BUILD_ID +1 -1
- voice_mode/frontend/.next/standalone/.next/app-build-manifest.json +5 -5
- voice_mode/frontend/.next/standalone/.next/build-manifest.json +3 -3
- voice_mode/frontend/.next/standalone/.next/prerender-manifest.json +1 -1
- voice_mode/frontend/.next/standalone/.next/required-server-files.json +1 -1
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js +1 -1
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found.html +1 -1
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found.rsc +1 -1
- voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js +2 -2
- voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js +2 -2
- voice_mode/frontend/.next/standalone/.next/server/app/index.html +1 -1
- voice_mode/frontend/.next/standalone/.next/server/app/index.rsc +2 -2
- voice_mode/frontend/.next/standalone/.next/server/app/page.js +3 -3
- voice_mode/frontend/.next/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
- voice_mode/frontend/.next/standalone/.next/server/chunks/994.js +1 -1
- voice_mode/frontend/.next/standalone/.next/server/middleware-build-manifest.js +1 -1
- voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.js +1 -1
- voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.json +1 -1
- voice_mode/frontend/.next/standalone/.next/server/pages/404.html +1 -1
- voice_mode/frontend/.next/standalone/.next/server/pages/500.html +1 -1
- voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.json +1 -1
- voice_mode/frontend/.next/standalone/server.js +1 -1
- voice_mode/frontend/.next/static/chunks/app/{layout-0e969b20634a3137.js → layout-a9d79fcaeb3295f5.js} +1 -1
- voice_mode/frontend/.next/static/chunks/app/{page-db597c111ebcc19f.js → page-011e46e13f394b9b.js} +1 -1
- voice_mode/frontend/.next/static/chunks/{main-app-b9e128659aafd50e.js → main-app-b03681837de4dca6.js} +1 -1
- voice_mode/frontend/.next/trace +43 -43
- voice_mode/frontend/.next/types/app/api/connection-details/route.ts +1 -1
- voice_mode/frontend/.next/types/app/layout.ts +1 -1
- voice_mode/frontend/.next/types/app/page.ts +1 -1
- voice_mode/frontend/package-lock.json +11 -11
- voice_mode/resources/configuration.py +8 -4
- voice_mode/resources/whisper_models.py +10 -13
- voice_mode/templates/systemd/voicemode-frontend.service +1 -1
- voice_mode/tools/configuration_management.py +7 -2
- voice_mode/tools/converse.py +75 -24
- voice_mode/tools/service.py +30 -3
- voice_mode/tools/services/kokoro/install.py +4 -3
- voice_mode/tools/services/whisper/__init__.py +23 -0
- voice_mode/tools/services/whisper/install.py +43 -11
- voice_mode/tools/services/whisper/list_models.py +70 -0
- voice_mode/tools/services/whisper/model_active.py +54 -0
- voice_mode/tools/services/whisper/model_benchmark.py +159 -0
- voice_mode/tools/services/whisper/{download_model.py → model_install.py} +72 -11
- voice_mode/tools/services/whisper/model_remove.py +36 -0
- voice_mode/tools/services/whisper/models.py +473 -0
- voice_mode/utils/services/whisper_helpers.py +206 -19
- voice_mode/utils/services/whisper_version.py +138 -0
- {voice_mode-2.26.0.dist-info → voice_mode-2.28.0.dist-info}/METADATA +5 -1
- {voice_mode-2.26.0.dist-info → voice_mode-2.28.0.dist-info}/RECORD +82 -75
- /voice_mode/frontend/.next/static/{uvJyMdD1IAhgbf_LCTQE6 → cSCYUZbU1EJR-gEGqdoa-}/_buildManifest.js +0 -0
- /voice_mode/frontend/.next/static/{uvJyMdD1IAhgbf_LCTQE6 → cSCYUZbU1EJR-gEGqdoa-}/_ssgManifest.js +0 -0
- {voice_mode-2.26.0.dist-info → voice_mode-2.28.0.dist-info}/WHEEL +0 -0
- {voice_mode-2.26.0.dist-info → voice_mode-2.28.0.dist-info}/entry_points.txt +0 -0
voice_mode/__version__.py
CHANGED