voice-mode 2.27.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.
Files changed (83) hide show
  1. voice_mode/__version__.py +1 -1
  2. voice_mode/cli.py +152 -37
  3. voice_mode/cli_commands/exchanges.py +6 -0
  4. voice_mode/frontend/.next/BUILD_ID +1 -1
  5. voice_mode/frontend/.next/app-build-manifest.json +5 -5
  6. voice_mode/frontend/.next/app-path-routes-manifest.json +1 -1
  7. voice_mode/frontend/.next/build-manifest.json +3 -3
  8. voice_mode/frontend/.next/next-minimal-server.js.nft.json +1 -1
  9. voice_mode/frontend/.next/next-server.js.nft.json +1 -1
  10. voice_mode/frontend/.next/prerender-manifest.json +1 -1
  11. voice_mode/frontend/.next/required-server-files.json +1 -1
  12. voice_mode/frontend/.next/server/app/_not-found/page.js +1 -1
  13. voice_mode/frontend/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  14. voice_mode/frontend/.next/server/app/_not-found.html +1 -1
  15. voice_mode/frontend/.next/server/app/_not-found.rsc +1 -1
  16. voice_mode/frontend/.next/server/app/api/connection-details/route.js +2 -2
  17. voice_mode/frontend/.next/server/app/favicon.ico/route.js +2 -2
  18. voice_mode/frontend/.next/server/app/index.html +1 -1
  19. voice_mode/frontend/.next/server/app/index.rsc +2 -2
  20. voice_mode/frontend/.next/server/app/page.js +3 -3
  21. voice_mode/frontend/.next/server/app/page_client-reference-manifest.js +1 -1
  22. voice_mode/frontend/.next/server/app-paths-manifest.json +1 -1
  23. voice_mode/frontend/.next/server/chunks/994.js +1 -1
  24. voice_mode/frontend/.next/server/middleware-build-manifest.js +1 -1
  25. voice_mode/frontend/.next/server/next-font-manifest.js +1 -1
  26. voice_mode/frontend/.next/server/next-font-manifest.json +1 -1
  27. voice_mode/frontend/.next/server/pages/404.html +1 -1
  28. voice_mode/frontend/.next/server/pages/500.html +1 -1
  29. voice_mode/frontend/.next/server/server-reference-manifest.json +1 -1
  30. voice_mode/frontend/.next/standalone/.next/BUILD_ID +1 -1
  31. voice_mode/frontend/.next/standalone/.next/app-build-manifest.json +5 -5
  32. voice_mode/frontend/.next/standalone/.next/app-path-routes-manifest.json +1 -1
  33. voice_mode/frontend/.next/standalone/.next/build-manifest.json +3 -3
  34. voice_mode/frontend/.next/standalone/.next/prerender-manifest.json +1 -1
  35. voice_mode/frontend/.next/standalone/.next/required-server-files.json +1 -1
  36. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js +1 -1
  37. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  38. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.html +1 -1
  39. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.rsc +1 -1
  40. voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js +2 -2
  41. voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js +2 -2
  42. voice_mode/frontend/.next/standalone/.next/server/app/index.html +1 -1
  43. voice_mode/frontend/.next/standalone/.next/server/app/index.rsc +2 -2
  44. voice_mode/frontend/.next/standalone/.next/server/app/page.js +3 -3
  45. voice_mode/frontend/.next/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
  46. voice_mode/frontend/.next/standalone/.next/server/app-paths-manifest.json +1 -1
  47. voice_mode/frontend/.next/standalone/.next/server/chunks/994.js +1 -1
  48. voice_mode/frontend/.next/standalone/.next/server/middleware-build-manifest.js +1 -1
  49. voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.js +1 -1
  50. voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.json +1 -1
  51. voice_mode/frontend/.next/standalone/.next/server/pages/404.html +1 -1
  52. voice_mode/frontend/.next/standalone/.next/server/pages/500.html +1 -1
  53. voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.json +1 -1
  54. voice_mode/frontend/.next/standalone/server.js +1 -1
  55. voice_mode/frontend/.next/static/chunks/app/{layout-08be62ed6e344292.js → layout-a9d79fcaeb3295f5.js} +1 -1
  56. voice_mode/frontend/.next/static/chunks/app/page-011e46e13f394b9b.js +1 -0
  57. voice_mode/frontend/.next/static/chunks/{main-app-413f77c1f2c53e3f.js → main-app-b03681837de4dca6.js} +1 -1
  58. voice_mode/frontend/.next/trace +43 -43
  59. voice_mode/frontend/.next/types/app/api/connection-details/route.ts +1 -1
  60. voice_mode/frontend/.next/types/app/layout.ts +1 -1
  61. voice_mode/frontend/.next/types/app/page.ts +1 -1
  62. voice_mode/frontend/package-lock.json +6 -6
  63. voice_mode/tools/converse.py +44 -24
  64. voice_mode/tools/service.py +30 -3
  65. voice_mode/tools/services/kokoro/install.py +1 -1
  66. voice_mode/tools/services/whisper/__init__.py +15 -5
  67. voice_mode/tools/services/whisper/install.py +40 -9
  68. voice_mode/tools/services/whisper/list_models.py +14 -14
  69. voice_mode/tools/services/whisper/model_active.py +54 -0
  70. voice_mode/tools/services/whisper/model_benchmark.py +159 -0
  71. voice_mode/tools/services/whisper/{download_model.py → model_install.py} +72 -11
  72. voice_mode/tools/services/whisper/model_remove.py +36 -0
  73. voice_mode/tools/services/whisper/models.py +225 -26
  74. voice_mode/utils/services/whisper_helpers.py +206 -19
  75. voice_mode/utils/services/whisper_version.py +138 -0
  76. {voice_mode-2.27.0.dist-info → voice_mode-2.28.0.dist-info}/METADATA +5 -1
  77. {voice_mode-2.27.0.dist-info → voice_mode-2.28.0.dist-info}/RECORD +81 -78
  78. voice_mode/frontend/.next/static/chunks/app/page-80fc72669f25298f.js +0 -1
  79. voice_mode/tools/services/whisper/list_models_tool.py +0 -65
  80. /voice_mode/frontend/.next/static/{wQ5pxzPmwjlzdUfJwSjMg → cSCYUZbU1EJR-gEGqdoa-}/_buildManifest.js +0 -0
  81. /voice_mode/frontend/.next/static/{wQ5pxzPmwjlzdUfJwSjMg → cSCYUZbU1EJR-gEGqdoa-}/_ssgManifest.js +0 -0
  82. {voice_mode-2.27.0.dist-info → voice_mode-2.28.0.dist-info}/WHEEL +0 -0
  83. {voice_mode-2.27.0.dist-info → voice_mode-2.28.0.dist-info}/entry_points.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  voice_mode/__init__.py,sha256=PDCwE2rrm8yyYxEiQQJkznQ_4xYp3DWIxGSB84K_mnI,346
2
2
  voice_mode/__main__.py,sha256=td-njie1XgkR-NrQjOEUse4TSJBC8DAmYywHum3V6WQ,138
3
- voice_mode/__version__.py,sha256=cXnGpvDjml8iB_T31HamO10xDQswsIG5l-QBOU9mi9A,101
4
- voice_mode/cli.py,sha256=1RvgYUAWspTufMu5hCdVjVvOEJnxwluwQcIUpOYBMF0,67147
3
+ voice_mode/__version__.py,sha256=il2_KYuJ4btk5CpTeWCsj1O7njfPHi-EXNimbZuItPg,101
4
+ voice_mode/cli.py,sha256=wYS-xWYxzoSVoHOgUcvp_I_fl4Nvf06XnYDZwI4ji0Y,72126
5
5
  voice_mode/config.py,sha256=yB8SRM1oyASbxUORhIYVfxvlC5KlJhNv5A8aFsLmIro,27453
6
6
  voice_mode/conversation_logger.py,sha256=Nar92xabhaVmMKdZdLmgoYckK9fGAVVYWdass3-EI1I,9363
7
7
  voice_mode/core.py,sha256=Nx9pxVWcI2BFRqU7MLmfuJlcvvRJ7_Wy14Wq3VZOmm8,25217
@@ -15,7 +15,7 @@ voice_mode/streaming.py,sha256=AP0dPt8jAGnM_i3qhtPe4334EBQryWxOJ6NPt48tHvE,21744
15
15
  voice_mode/version.py,sha256=rgv7tThj3fBO006bhff3iz_TlfE5uQS4Gws-9xf8YIc,2452
16
16
  voice_mode/voice_preferences.py,sha256=yIxKcXWVxzzMuJsqjryowkZ347DtfRmExby-SfvpGI0,3851
17
17
  voice_mode/cli_commands/__init__.py,sha256=qaIkE-dtA0_s400BfX7h6IIoFQlNrXwGLbuHRhGUjWA,32
18
- voice_mode/cli_commands/exchanges.py,sha256=Bgl-J9SIIq7EBxLGalqbalcLsIglq38atOK7ygTDKIs,16583
18
+ voice_mode/cli_commands/exchanges.py,sha256=R8k_MtiZmDG7ST974MoDTkUKgvGgLNESzTjg2dvZRoY,16828
19
19
  voice_mode/data/versions.json,sha256=84CR9_GOFEIlBouznSSIoZX7kKY_qZt5aupUgsYnvKs,1166
20
20
  voice_mode/exchanges/__init__.py,sha256=2rNsolj3FzY-3Xes6q_J6a-Eo6oTRWsl8Mu1VmJKeAE,734
21
21
  voice_mode/exchanges/conversations.py,sha256=cKRL-n212iFZ8PjPXTP1IBg62ESSU7NL6e-rC77o9v8,9519
@@ -27,64 +27,64 @@ voice_mode/exchanges/stats.py,sha256=UVnJnVuqmd64T_iqBLVLPjTIDoyZwRg-MZUFJMHHWxg
27
27
  voice_mode/frontend/README.md,sha256=uosvWgNiWL_sP9liv-wnDNdPmJ3oFiLstXygxyzcN7A,2131
28
28
  voice_mode/frontend/next-env.d.ts,sha256=ndnWQs24fU1bMXMhfgxFQps-R6b1z1-w6tbGROxf7QE,228
29
29
  voice_mode/frontend/next.config.mjs,sha256=5kqiwwjpFblS_IHlnDJh7ELk_3rldB6pcSXIbrkytpQ,767
30
- voice_mode/frontend/package-lock.json,sha256=dOEH7asF7RuWOnlSI3KGQzqtFyRkDn27PmZWTYjxFbs,143483
30
+ voice_mode/frontend/package-lock.json,sha256=Nk_0HhCKEFALW5mh2yu63QDJAqrzuh7EMrx27sBRgJE,143483
31
31
  voice_mode/frontend/package.json,sha256=BUOh3UiaHq1D0Bww-jy2EjhOi-47rjOipeUqXONJndo,1150
32
32
  voice_mode/frontend/pnpm-lock.yaml,sha256=DSl1H3fb4tNVrHjsc5HbflJJIr95erkADNeUoFY21x4,127796
33
33
  voice_mode/frontend/postcss.config.mjs,sha256=76ZcZeF9UdWFcO3OnXArBgT99qm422Wvrtjwda-IZ8c,157
34
34
  voice_mode/frontend/tailwind.config.ts,sha256=w0mWCjy3kwryNcqgub24YLbmd2V9EvOmWSYHmsFdpkY,264
35
35
  voice_mode/frontend/tsconfig.json,sha256=VCAvHW01ulHD2uoyv2fo2iRWjsDLDDQfoLXtLOsXTy0,574
36
- voice_mode/frontend/.next/BUILD_ID,sha256=2mUlpK5o8qwAJ9OLa8LM_YakXbo93QtbmvzdjuqEDzc,21
37
- voice_mode/frontend/.next/app-build-manifest.json,sha256=_G-coDYpgnTxiAek1FccpmaH3MREhZWJDmRzqvM30rY,1010
38
- voice_mode/frontend/.next/app-path-routes-manifest.json,sha256=5fsQ7G-tbSbXuPL_Kr-yDUzUzFXY7JUxmHKbpnGd5QI,140
39
- voice_mode/frontend/.next/build-manifest.json,sha256=8WTFy2rVKqqqbiIwDx2G4JrzoIQq11-sK6nkKwzuLXU,968
36
+ voice_mode/frontend/.next/BUILD_ID,sha256=eMjCUYY7Po2M2mgSbu1qdJQHMmnk2hD37NCb_bJuC_A,21
37
+ voice_mode/frontend/.next/app-build-manifest.json,sha256=gaQC5GVwwJOTrGzrs-5vUSI4ve18-xPTSSIgAsA-9Zo,1010
38
+ voice_mode/frontend/.next/app-path-routes-manifest.json,sha256=-WXlpEHFoCBUDPfxzUJleLsfZiEUU-rU0hRMZ8AVIJI,140
39
+ voice_mode/frontend/.next/build-manifest.json,sha256=H89S0Lwyc97CBE0HXhZqstROfE7F9PRG1xg9fRt7GeU,968
40
40
  voice_mode/frontend/.next/export-marker.json,sha256=ALjrM5QMj5hmGX14xIc2wIFDfLaFKlK3n1wQpwjMagI,94
41
41
  voice_mode/frontend/.next/images-manifest.json,sha256=Z1eB8ppSn86wfAon69Z5DSKbg7IoIvyGB8uCu88xGjs,511
42
- voice_mode/frontend/.next/next-minimal-server.js.nft.json,sha256=w8Wqb5J8g1B5mxZq86TztKrOA2oVfqwh2UsA7F9BhDs,7314
43
- voice_mode/frontend/.next/next-server.js.nft.json,sha256=tBf_qlv54Ya1ppdMpoVrmSq2BU7WB7RrRQcMbKogx8s,109011
42
+ voice_mode/frontend/.next/next-minimal-server.js.nft.json,sha256=X_ibfpb7JCpNTBnzlQVV5D4Um4sIRhkv7CXpFsh41TA,7314
43
+ voice_mode/frontend/.next/next-server.js.nft.json,sha256=wuZOvIY-FuOqEQ4hO72wmJ8cG2bFoY96KMOc3jfiKZo,109011
44
44
  voice_mode/frontend/.next/package.json,sha256=CRoE-mfHkHuY4Qb8_4uWThMSl1T85y0k8wJbl8SIf6M,20
45
- voice_mode/frontend/.next/prerender-manifest.json,sha256=1CyY8s2E6F6NABrM_rRwbwvlEfyvMgkS_ySFMi1scHc,959
45
+ voice_mode/frontend/.next/prerender-manifest.json,sha256=i8CaB4TEXT2__Rgz7uFlmEVZeYHpJtta8pIXfTpzHzI,959
46
46
  voice_mode/frontend/.next/react-loadable-manifest.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
47
- voice_mode/frontend/.next/required-server-files.json,sha256=bKcphh8jt4l1H5aUYYrm1Ty4z4TQh-_YdQaVVAZFte0,4750
47
+ voice_mode/frontend/.next/required-server-files.json,sha256=5QRXIQdr5cABIekiZcdd80MAa5H1DIQ-gViuGTzTi2Y,4750
48
48
  voice_mode/frontend/.next/routes-manifest.json,sha256=DqV6K_WLiS6wKvdr8TpF7-uBhH7xbrg7xeznwWaeO70,831
49
- voice_mode/frontend/.next/trace,sha256=Da4mc1mMnkTzx6bW5SzCENxXCj7GnVS12osR63d-nqk,895667
50
- voice_mode/frontend/.next/server/app-paths-manifest.json,sha256=-QCKjTF2wGMP1FC6l0rmMrK7uzPM2jkSde7PVO9Gr98,202
49
+ voice_mode/frontend/.next/trace,sha256=fSqVpcR3J3SJCvvoAT3k5tLPPt1-uTCkYe_QN6Kpc5A,895637
50
+ voice_mode/frontend/.next/server/app-paths-manifest.json,sha256=Xyxtr52aubW5XDHj7Ms66qiSJfwCkBVeL3ekU8uh2os,202
51
51
  voice_mode/frontend/.next/server/font-manifest.json,sha256=T1PNoYwrqgwDVLtfmj7L5e0Sq02OEbqHPC8RFhICuUU,2
52
52
  voice_mode/frontend/.next/server/functions-config-manifest.json,sha256=CUXUfXux-dC5WRXm4vr6xa3f-RKEsEV1aG-hO3KK0CE,56
53
53
  voice_mode/frontend/.next/server/interception-route-rewrite-manifest.js,sha256=_FEz5ArPCeZRewc93XtcDCGNCZOISJAiEPLME_COHIE,48
54
- voice_mode/frontend/.next/server/middleware-build-manifest.js,sha256=FZuToNsMJM3LrZ7g0r7leKNPzFyzmMXtUMrCiknGFK4,888
54
+ voice_mode/frontend/.next/server/middleware-build-manifest.js,sha256=AI9VI3zwYVTo1kkLvWnEoBPdvN36zX_Vk9Uo0g_1X5Q,888
55
55
  voice_mode/frontend/.next/server/middleware-manifest.json,sha256=CoUgvH4Hb3rnF8LWJxOZDIPoo9dGJvMno4RLwFBOIQw,83
56
56
  voice_mode/frontend/.next/server/middleware-react-loadable-manifest.js,sha256=rS557JHipUQIQNo9i9IiwnmztMR-ialoMnpm9ssS64I,36
57
- voice_mode/frontend/.next/server/next-font-manifest.js,sha256=wAyYTnlz0Edx8ptRMCIJgROwJEX9Vjutovfl30OdECA,229
58
- voice_mode/frontend/.next/server/next-font-manifest.json,sha256=cGfgixnwneKZ-xZOZuBrO8T5666IUq7aA3s3SBvQwPw,200
57
+ voice_mode/frontend/.next/server/next-font-manifest.js,sha256=s1jvLpTDjFyUVtID2tnWp165sAe7nID-mCIEiLZ_ROw,229
58
+ voice_mode/frontend/.next/server/next-font-manifest.json,sha256=U0Fie2FGvpiv3gXZwnJDggxWBEJOgWv3h9VAywv_U4I,200
59
59
  voice_mode/frontend/.next/server/pages-manifest.json,sha256=CtIVJgXR_t73dArygJmC6GsgbxLMM1N2fAUgg0-bUc8,111
60
60
  voice_mode/frontend/.next/server/server-reference-manifest.js,sha256=zgEAbADh9jvL_kGz9-3SYNlptB0KMjtwXETh753xPYw,123
61
- voice_mode/frontend/.next/server/server-reference-manifest.json,sha256=l3-0MRF7kzqczue1jMXeKfI1DN9uPgOEeyuZtmy56SI,84
61
+ voice_mode/frontend/.next/server/server-reference-manifest.json,sha256=EL0I61j2U-AqNqcrgjJeY-OtFoUeYhoJ0xhiL1gKB3k,84
62
62
  voice_mode/frontend/.next/server/webpack-runtime.js,sha256=mmuyol21D9il2KNetWeEUG5OBu3z05WsphIyIbwvads,1469
63
- voice_mode/frontend/.next/server/app/_not-found.html,sha256=TmVKavrkJ5RAeF8Y_DamCdJwvTEavCDgtpeLyMkky8U,6752
63
+ voice_mode/frontend/.next/server/app/_not-found.html,sha256=YkYsiKjfjt620V6mElJ3vAcbvVxK1qymYMzH6BohE7w,6752
64
64
  voice_mode/frontend/.next/server/app/_not-found.meta,sha256=8-vSzkZIhJgJ7_uOmMyzHNf5QN3Exhbk-5ObKal4lrc,142
65
- voice_mode/frontend/.next/server/app/_not-found.rsc,sha256=vqqjBHRhK0dfoqyP8BJRknuevr4iknP4S7XNoW9STYM,3621
65
+ voice_mode/frontend/.next/server/app/_not-found.rsc,sha256=3X0nYglaRsvBUXC3s5dpYVKGsKmRsZ0z34QN_4E6EE0,3621
66
66
  voice_mode/frontend/.next/server/app/favicon.ico.body,sha256=Cc2QdQ-OI3iME7dIf86sbqXHW3D8LPUprF_KB2KZogI,15406
67
67
  voice_mode/frontend/.next/server/app/favicon.ico.meta,sha256=iac7LJDMkBlPpPPzKMbIDSh2bqoxNKhYx_5nQjo5Tds,211
68
- voice_mode/frontend/.next/server/app/index.html,sha256=bIVjtGg2ZyZ5Br8arogBfuw5j1dxGdg2UwtRiN_-990,5396
68
+ voice_mode/frontend/.next/server/app/index.html,sha256=-p6LK4zcESn_U7vnrxNk9IbyaX3U731TriBIJgUJVBY,5396
69
69
  voice_mode/frontend/.next/server/app/index.meta,sha256=BDswoSxeaM0dEV3Vl3-2HNVKE5mS5NQhBYZcQQt5mnQ,80
70
- voice_mode/frontend/.next/server/app/index.rsc,sha256=DSvpK7GdhM8IvgH0ej9k_n3tKH4_y-1eCZaAr5St_m8,2438
71
- voice_mode/frontend/.next/server/app/page.js,sha256=8ESIG0oUJROP1nMCXdI3dlAgX9rZEqeIdUlWCxo7WuQ,611922
70
+ voice_mode/frontend/.next/server/app/index.rsc,sha256=W8B0iH3d8Bz4FrUa9SG5L53O6KaoZWTW8THR03yhlD8,2438
71
+ voice_mode/frontend/.next/server/app/page.js,sha256=AADt4q4B4F3nTpUTlXisxTYbtSVxERQ3RKjZkXaIJ_w,611920
72
72
  voice_mode/frontend/.next/server/app/page.js.nft.json,sha256=6plKkaMV7NDsYDUQsMAnayayODq1vS_l6nRXRrm9Trg,1168
73
- voice_mode/frontend/.next/server/app/page_client-reference-manifest.js,sha256=u5nlKDCetsRJYqMRE407WHj_tdNW8qWDwL7D-d533DQ,4193
74
- voice_mode/frontend/.next/server/app/_not-found/page.js,sha256=UOIeFqh9h7k_ZkS98vPds6WCvG6utjgPb-F5x2qPCSc,3387
73
+ voice_mode/frontend/.next/server/app/page_client-reference-manifest.js,sha256=ITEMv4cL1T4yyC3trjFyhyHMixR9aOTCVVVvGt9eGNA,4193
74
+ voice_mode/frontend/.next/server/app/_not-found/page.js,sha256=Mx3DytlHKxFghG0iPf8jlwpQyIgC24NS_7KNOpD2BE0,3387
75
75
  voice_mode/frontend/.next/server/app/_not-found/page.js.nft.json,sha256=7Z_Wav7koMsnepi3GignvrVRYuDbzwvKqqg84LuoSis,1195
76
- voice_mode/frontend/.next/server/app/_not-found/page_client-reference-manifest.js,sha256=aRRx9fwCZL2KJybvGEOBdEXHc8REy808TG6IuBZptcI,4297
77
- voice_mode/frontend/.next/server/app/api/connection-details/route.js,sha256=xoAcFoRMIa8v5JMPQVcYVcZ6EdMiHrdnmPUualblhSo,121020
76
+ voice_mode/frontend/.next/server/app/_not-found/page_client-reference-manifest.js,sha256=s7VpnPy2atuGKgFapNkiskCsWVU1tyciXTzakJVD_6Y,4297
77
+ voice_mode/frontend/.next/server/app/api/connection-details/route.js,sha256=oESRhLWsjycPVi58Ea32gdoiVrQylfAlMYFwu5McKUs,121018
78
78
  voice_mode/frontend/.next/server/app/api/connection-details/route.js.nft.json,sha256=qjdiqEpb5s6iSOQsC1MI3A0_sVjbF9Eh1t1mR_VcS9o,1327
79
- voice_mode/frontend/.next/server/app/favicon.ico/route.js,sha256=y6sAwD3iDX_ciOWtTjYmoBta5B0IA2rbqGkjjGjcKwc,66228
79
+ voice_mode/frontend/.next/server/app/favicon.ico/route.js,sha256=jxhPoSl_Dnpl-G5UvO3jpvwp8ODnLiHbQ3_1_o64fnk,66228
80
80
  voice_mode/frontend/.next/server/app/favicon.ico/route.js.nft.json,sha256=xn4G0NuxuIbLuaN_3PVtjN4lYs5MWduPcvqhdZwRNkQ,1248
81
81
  voice_mode/frontend/.next/server/chunks/463.js,sha256=9Fg9G6vSgz6lLnnirTbzQKyy5MQAf59a16SvYM0xDFc,6201
82
82
  voice_mode/frontend/.next/server/chunks/682.js,sha256=dxTmuBsZ77qjHYtQvwM0HeoE4FnESxOOpTnhW3ABg18,33636
83
83
  voice_mode/frontend/.next/server/chunks/948.js,sha256=2QNDLi5TnS9qLpgKRmsx_sJzO2vtdQJIRn124o6fjeI,57650
84
- voice_mode/frontend/.next/server/chunks/994.js,sha256=PWD5PXK5Mam4hCKGJEczNUJFEm5lVUUlMmKI2bS3UgQ,95359
84
+ voice_mode/frontend/.next/server/chunks/994.js,sha256=VTarFuaEdXJBj4TI81ZMBzfSmNefr4eEzRry6ReSDhQ,95359
85
85
  voice_mode/frontend/.next/server/chunks/font-manifest.json,sha256=T1PNoYwrqgwDVLtfmj7L5e0Sq02OEbqHPC8RFhICuUU,2
86
- voice_mode/frontend/.next/server/pages/404.html,sha256=TmVKavrkJ5RAeF8Y_DamCdJwvTEavCDgtpeLyMkky8U,6752
87
- voice_mode/frontend/.next/server/pages/500.html,sha256=XTH_b--wP2AGaTCkxs0kNeRbvse92XCZptnxNkWrEa4,1995
86
+ voice_mode/frontend/.next/server/pages/404.html,sha256=YkYsiKjfjt620V6mElJ3vAcbvVxK1qymYMzH6BohE7w,6752
87
+ voice_mode/frontend/.next/server/pages/500.html,sha256=3fofMEmxXzsFP71zeCsoaxbQ_JAjbjBWKyp5eWZHkck,1995
88
88
  voice_mode/frontend/.next/server/pages/_app.js,sha256=xv0yBH2BTySxH6d7_oFG8KbedK3Jhvvg9SQ7pSaSPrE,3291
89
89
  voice_mode/frontend/.next/server/pages/_app.js.nft.json,sha256=4DM09IfF6_ws-h14UVrroVq0Ri8tNeDEwwZ2c244nKM,517
90
90
  voice_mode/frontend/.next/server/pages/_document.js,sha256=q-VJKG6tPCpEYWhP0UobYWG_naYdKPuqkRpb4HGMV_Y,378
@@ -92,68 +92,70 @@ voice_mode/frontend/.next/server/pages/_document.js.nft.json,sha256=7WnWXoJIsRyt
92
92
  voice_mode/frontend/.next/server/pages/_error.js,sha256=1se20NEwePcXdV17_wUw4YhoMwVAenxiXI74aXSRqzU,8619
93
93
  voice_mode/frontend/.next/server/pages/_error.js.nft.json,sha256=uK8O79iTeItVu_-Dz90fkTMA1GYxQEpTWU8TndjkfVQ,1855
94
94
  voice_mode/frontend/.next/standalone/package.json,sha256=BUOh3UiaHq1D0Bww-jy2EjhOi-47rjOipeUqXONJndo,1150
95
- voice_mode/frontend/.next/standalone/server.js,sha256=W16xpGkXSUjLtLCke_Ne0zhcAX7Ud_Cv84LlqTgzFOk,4742
96
- voice_mode/frontend/.next/standalone/.next/BUILD_ID,sha256=2mUlpK5o8qwAJ9OLa8LM_YakXbo93QtbmvzdjuqEDzc,21
97
- voice_mode/frontend/.next/standalone/.next/app-build-manifest.json,sha256=_G-coDYpgnTxiAek1FccpmaH3MREhZWJDmRzqvM30rY,1010
98
- voice_mode/frontend/.next/standalone/.next/app-path-routes-manifest.json,sha256=5fsQ7G-tbSbXuPL_Kr-yDUzUzFXY7JUxmHKbpnGd5QI,140
99
- voice_mode/frontend/.next/standalone/.next/build-manifest.json,sha256=8WTFy2rVKqqqbiIwDx2G4JrzoIQq11-sK6nkKwzuLXU,968
95
+ voice_mode/frontend/.next/standalone/server.js,sha256=n7wrXoQHjlYzQwuNiO5Lt81f1-Npd9CFg7F777QGHCo,4742
96
+ voice_mode/frontend/.next/standalone/.next/BUILD_ID,sha256=eMjCUYY7Po2M2mgSbu1qdJQHMmnk2hD37NCb_bJuC_A,21
97
+ voice_mode/frontend/.next/standalone/.next/app-build-manifest.json,sha256=gaQC5GVwwJOTrGzrs-5vUSI4ve18-xPTSSIgAsA-9Zo,1010
98
+ voice_mode/frontend/.next/standalone/.next/app-path-routes-manifest.json,sha256=-WXlpEHFoCBUDPfxzUJleLsfZiEUU-rU0hRMZ8AVIJI,140
99
+ voice_mode/frontend/.next/standalone/.next/build-manifest.json,sha256=H89S0Lwyc97CBE0HXhZqstROfE7F9PRG1xg9fRt7GeU,968
100
100
  voice_mode/frontend/.next/standalone/.next/package.json,sha256=CRoE-mfHkHuY4Qb8_4uWThMSl1T85y0k8wJbl8SIf6M,20
101
- voice_mode/frontend/.next/standalone/.next/prerender-manifest.json,sha256=1CyY8s2E6F6NABrM_rRwbwvlEfyvMgkS_ySFMi1scHc,959
101
+ voice_mode/frontend/.next/standalone/.next/prerender-manifest.json,sha256=i8CaB4TEXT2__Rgz7uFlmEVZeYHpJtta8pIXfTpzHzI,959
102
102
  voice_mode/frontend/.next/standalone/.next/react-loadable-manifest.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
103
- voice_mode/frontend/.next/standalone/.next/required-server-files.json,sha256=bKcphh8jt4l1H5aUYYrm1Ty4z4TQh-_YdQaVVAZFte0,4750
103
+ voice_mode/frontend/.next/standalone/.next/required-server-files.json,sha256=5QRXIQdr5cABIekiZcdd80MAa5H1DIQ-gViuGTzTi2Y,4750
104
104
  voice_mode/frontend/.next/standalone/.next/routes-manifest.json,sha256=DqV6K_WLiS6wKvdr8TpF7-uBhH7xbrg7xeznwWaeO70,831
105
- voice_mode/frontend/.next/standalone/.next/server/app-paths-manifest.json,sha256=-QCKjTF2wGMP1FC6l0rmMrK7uzPM2jkSde7PVO9Gr98,202
105
+ voice_mode/frontend/.next/standalone/.next/server/app-paths-manifest.json,sha256=Xyxtr52aubW5XDHj7Ms66qiSJfwCkBVeL3ekU8uh2os,202
106
106
  voice_mode/frontend/.next/standalone/.next/server/font-manifest.json,sha256=T1PNoYwrqgwDVLtfmj7L5e0Sq02OEbqHPC8RFhICuUU,2
107
- voice_mode/frontend/.next/standalone/.next/server/middleware-build-manifest.js,sha256=FZuToNsMJM3LrZ7g0r7leKNPzFyzmMXtUMrCiknGFK4,888
107
+ voice_mode/frontend/.next/standalone/.next/server/middleware-build-manifest.js,sha256=AI9VI3zwYVTo1kkLvWnEoBPdvN36zX_Vk9Uo0g_1X5Q,888
108
108
  voice_mode/frontend/.next/standalone/.next/server/middleware-manifest.json,sha256=CoUgvH4Hb3rnF8LWJxOZDIPoo9dGJvMno4RLwFBOIQw,83
109
109
  voice_mode/frontend/.next/standalone/.next/server/middleware-react-loadable-manifest.js,sha256=rS557JHipUQIQNo9i9IiwnmztMR-ialoMnpm9ssS64I,36
110
- voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.js,sha256=wAyYTnlz0Edx8ptRMCIJgROwJEX9Vjutovfl30OdECA,229
111
- voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.json,sha256=cGfgixnwneKZ-xZOZuBrO8T5666IUq7aA3s3SBvQwPw,200
110
+ voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.js,sha256=s1jvLpTDjFyUVtID2tnWp165sAe7nID-mCIEiLZ_ROw,229
111
+ voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.json,sha256=U0Fie2FGvpiv3gXZwnJDggxWBEJOgWv3h9VAywv_U4I,200
112
112
  voice_mode/frontend/.next/standalone/.next/server/pages-manifest.json,sha256=CtIVJgXR_t73dArygJmC6GsgbxLMM1N2fAUgg0-bUc8,111
113
113
  voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.js,sha256=zgEAbADh9jvL_kGz9-3SYNlptB0KMjtwXETh753xPYw,123
114
- voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.json,sha256=l3-0MRF7kzqczue1jMXeKfI1DN9uPgOEeyuZtmy56SI,84
114
+ voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.json,sha256=EL0I61j2U-AqNqcrgjJeY-OtFoUeYhoJ0xhiL1gKB3k,84
115
115
  voice_mode/frontend/.next/standalone/.next/server/webpack-runtime.js,sha256=mmuyol21D9il2KNetWeEUG5OBu3z05WsphIyIbwvads,1469
116
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found.html,sha256=TmVKavrkJ5RAeF8Y_DamCdJwvTEavCDgtpeLyMkky8U,6752
116
+ voice_mode/frontend/.next/standalone/.next/server/app/_not-found.html,sha256=YkYsiKjfjt620V6mElJ3vAcbvVxK1qymYMzH6BohE7w,6752
117
117
  voice_mode/frontend/.next/standalone/.next/server/app/_not-found.meta,sha256=8-vSzkZIhJgJ7_uOmMyzHNf5QN3Exhbk-5ObKal4lrc,142
118
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found.rsc,sha256=vqqjBHRhK0dfoqyP8BJRknuevr4iknP4S7XNoW9STYM,3621
118
+ voice_mode/frontend/.next/standalone/.next/server/app/_not-found.rsc,sha256=3X0nYglaRsvBUXC3s5dpYVKGsKmRsZ0z34QN_4E6EE0,3621
119
119
  voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico.body,sha256=Cc2QdQ-OI3iME7dIf86sbqXHW3D8LPUprF_KB2KZogI,15406
120
120
  voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico.meta,sha256=iac7LJDMkBlPpPPzKMbIDSh2bqoxNKhYx_5nQjo5Tds,211
121
- voice_mode/frontend/.next/standalone/.next/server/app/index.html,sha256=bIVjtGg2ZyZ5Br8arogBfuw5j1dxGdg2UwtRiN_-990,5396
121
+ voice_mode/frontend/.next/standalone/.next/server/app/index.html,sha256=-p6LK4zcESn_U7vnrxNk9IbyaX3U731TriBIJgUJVBY,5396
122
122
  voice_mode/frontend/.next/standalone/.next/server/app/index.meta,sha256=BDswoSxeaM0dEV3Vl3-2HNVKE5mS5NQhBYZcQQt5mnQ,80
123
- voice_mode/frontend/.next/standalone/.next/server/app/index.rsc,sha256=DSvpK7GdhM8IvgH0ej9k_n3tKH4_y-1eCZaAr5St_m8,2438
124
- voice_mode/frontend/.next/standalone/.next/server/app/page.js,sha256=8ESIG0oUJROP1nMCXdI3dlAgX9rZEqeIdUlWCxo7WuQ,611922
123
+ voice_mode/frontend/.next/standalone/.next/server/app/index.rsc,sha256=W8B0iH3d8Bz4FrUa9SG5L53O6KaoZWTW8THR03yhlD8,2438
124
+ voice_mode/frontend/.next/standalone/.next/server/app/page.js,sha256=AADt4q4B4F3nTpUTlXisxTYbtSVxERQ3RKjZkXaIJ_w,611920
125
125
  voice_mode/frontend/.next/standalone/.next/server/app/page.js.nft.json,sha256=6plKkaMV7NDsYDUQsMAnayayODq1vS_l6nRXRrm9Trg,1168
126
- voice_mode/frontend/.next/standalone/.next/server/app/page_client-reference-manifest.js,sha256=u5nlKDCetsRJYqMRE407WHj_tdNW8qWDwL7D-d533DQ,4193
127
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js,sha256=UOIeFqh9h7k_ZkS98vPds6WCvG6utjgPb-F5x2qPCSc,3387
126
+ voice_mode/frontend/.next/standalone/.next/server/app/page_client-reference-manifest.js,sha256=ITEMv4cL1T4yyC3trjFyhyHMixR9aOTCVVVvGt9eGNA,4193
127
+ voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js,sha256=Mx3DytlHKxFghG0iPf8jlwpQyIgC24NS_7KNOpD2BE0,3387
128
128
  voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js.nft.json,sha256=7Z_Wav7koMsnepi3GignvrVRYuDbzwvKqqg84LuoSis,1195
129
- voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js,sha256=aRRx9fwCZL2KJybvGEOBdEXHc8REy808TG6IuBZptcI,4297
130
- voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js,sha256=xoAcFoRMIa8v5JMPQVcYVcZ6EdMiHrdnmPUualblhSo,121020
129
+ voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js,sha256=s7VpnPy2atuGKgFapNkiskCsWVU1tyciXTzakJVD_6Y,4297
130
+ voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js,sha256=oESRhLWsjycPVi58Ea32gdoiVrQylfAlMYFwu5McKUs,121018
131
131
  voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js.nft.json,sha256=qjdiqEpb5s6iSOQsC1MI3A0_sVjbF9Eh1t1mR_VcS9o,1327
132
- voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js,sha256=y6sAwD3iDX_ciOWtTjYmoBta5B0IA2rbqGkjjGjcKwc,66228
132
+ voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js,sha256=jxhPoSl_Dnpl-G5UvO3jpvwp8ODnLiHbQ3_1_o64fnk,66228
133
133
  voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js.nft.json,sha256=xn4G0NuxuIbLuaN_3PVtjN4lYs5MWduPcvqhdZwRNkQ,1248
134
134
  voice_mode/frontend/.next/standalone/.next/server/chunks/463.js,sha256=9Fg9G6vSgz6lLnnirTbzQKyy5MQAf59a16SvYM0xDFc,6201
135
135
  voice_mode/frontend/.next/standalone/.next/server/chunks/682.js,sha256=dxTmuBsZ77qjHYtQvwM0HeoE4FnESxOOpTnhW3ABg18,33636
136
136
  voice_mode/frontend/.next/standalone/.next/server/chunks/948.js,sha256=2QNDLi5TnS9qLpgKRmsx_sJzO2vtdQJIRn124o6fjeI,57650
137
- voice_mode/frontend/.next/standalone/.next/server/chunks/994.js,sha256=PWD5PXK5Mam4hCKGJEczNUJFEm5lVUUlMmKI2bS3UgQ,95359
138
- voice_mode/frontend/.next/standalone/.next/server/pages/404.html,sha256=TmVKavrkJ5RAeF8Y_DamCdJwvTEavCDgtpeLyMkky8U,6752
139
- voice_mode/frontend/.next/standalone/.next/server/pages/500.html,sha256=XTH_b--wP2AGaTCkxs0kNeRbvse92XCZptnxNkWrEa4,1995
137
+ voice_mode/frontend/.next/standalone/.next/server/chunks/994.js,sha256=VTarFuaEdXJBj4TI81ZMBzfSmNefr4eEzRry6ReSDhQ,95359
138
+ voice_mode/frontend/.next/standalone/.next/server/pages/404.html,sha256=YkYsiKjfjt620V6mElJ3vAcbvVxK1qymYMzH6BohE7w,6752
139
+ voice_mode/frontend/.next/standalone/.next/server/pages/500.html,sha256=3fofMEmxXzsFP71zeCsoaxbQ_JAjbjBWKyp5eWZHkck,1995
140
140
  voice_mode/frontend/.next/standalone/.next/server/pages/_app.js,sha256=xv0yBH2BTySxH6d7_oFG8KbedK3Jhvvg9SQ7pSaSPrE,3291
141
141
  voice_mode/frontend/.next/standalone/.next/server/pages/_app.js.nft.json,sha256=4DM09IfF6_ws-h14UVrroVq0Ri8tNeDEwwZ2c244nKM,517
142
142
  voice_mode/frontend/.next/standalone/.next/server/pages/_document.js,sha256=q-VJKG6tPCpEYWhP0UobYWG_naYdKPuqkRpb4HGMV_Y,378
143
143
  voice_mode/frontend/.next/standalone/.next/server/pages/_document.js.nft.json,sha256=7WnWXoJIsRytU5c-NAEx-tGGNI1TP2CMldwr8xtDQYk,1932
144
144
  voice_mode/frontend/.next/standalone/.next/server/pages/_error.js,sha256=1se20NEwePcXdV17_wUw4YhoMwVAenxiXI74aXSRqzU,8619
145
145
  voice_mode/frontend/.next/standalone/.next/server/pages/_error.js.nft.json,sha256=uK8O79iTeItVu_-Dz90fkTMA1GYxQEpTWU8TndjkfVQ,1855
146
+ voice_mode/frontend/.next/static/cSCYUZbU1EJR-gEGqdoa-/_buildManifest.js,sha256=UGi5XJhF4u-NRxMqU360JM2afxCS1essSVUEqY6sl5c,224
147
+ voice_mode/frontend/.next/static/cSCYUZbU1EJR-gEGqdoa-/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
146
148
  voice_mode/frontend/.next/static/chunks/117-40bc79a2b97edb21.js,sha256=sKMdOWIlJELukIK1QNRwH8hweTr_NgWzvc-bHWrZ9zM,123528
147
149
  voice_mode/frontend/.next/static/chunks/144d3bae-2d5f122b82426d88.js,sha256=tGa8lG7iuv-oxVEA7BdFJPmskDLIVXYnDOBb6j4_zp8,383332
148
150
  voice_mode/frontend/.next/static/chunks/471-bd4b96a33883dfa2.js,sha256=qT-fK-XMK3eAlXh2APHuRcKfG9EriUu-tXTEcNYWUp0,194375
149
151
  voice_mode/frontend/.next/static/chunks/fd9d1056-af324d327b243cf1.js,sha256=uL3flIHYWdZI4eBQ-DIus97-PdP5vRP0xE3W8uz1q4A,172834
150
152
  voice_mode/frontend/.next/static/chunks/framework-f66176bb897dc684.js,sha256=QlDVPwvHVuzi3daQoAit0df9yIdSjGcfTf6NkW13h7c,139978
151
153
  voice_mode/frontend/.next/static/chunks/main-3163eca598b76a9f.js,sha256=IwuNOgi-ik3KFA_tnaPvAfRY5q6hTp4DRK1lkjkWdwQ,116431
152
- voice_mode/frontend/.next/static/chunks/main-app-413f77c1f2c53e3f.js,sha256=3EGpBMyV6vEw01-jY1zO8iTSHiM9vh-gN-R5CszQ4Ho,461
154
+ voice_mode/frontend/.next/static/chunks/main-app-b03681837de4dca6.js,sha256=3b6eWT_FZmFHWgcoKOTKV1yCG3CBHXUhPHkFFMzrLUE,461
153
155
  voice_mode/frontend/.next/static/chunks/polyfills-42372ed130431b0a.js,sha256=CXPB1kyIrcjjyVBBDLWLKI9yEY1ZZbeASUON648vloM,112594
154
156
  voice_mode/frontend/.next/static/chunks/webpack-0ea9b80f19935b70.js,sha256=1Us0m_ZxEgMEb2DAN4ePlpq9Fv7QqUxcuV2CqICEB5w,3605
155
- voice_mode/frontend/.next/static/chunks/app/layout-08be62ed6e344292.js,sha256=X46uq_AvF09UMrSt-At8lbAWOKSrSeoUbdnNHeG2Dqw,507
156
- voice_mode/frontend/.next/static/chunks/app/page-80fc72669f25298f.js,sha256=0EgUtX_XQHVzAyBbeY5uN0XsiE8T2IQffMcyHCIyXP4,7664
157
+ voice_mode/frontend/.next/static/chunks/app/layout-a9d79fcaeb3295f5.js,sha256=D28V3aHEevrOJ51oWZ6w3-p1Rf2fnIk3l9zxBASHEhI,507
158
+ voice_mode/frontend/.next/static/chunks/app/page-011e46e13f394b9b.js,sha256=XA_Oa39uU3E35e_QxXlfGnsiiYre3b8DXoxdw7lMxnk,7666
157
159
  voice_mode/frontend/.next/static/chunks/app/_not-found/page-5011050e402ab9c8.js,sha256=u5LYOU4LZ2HFeEcz6xZqSflSnU4WDt-TnQNu3CdcEWk,1745
158
160
  voice_mode/frontend/.next/static/chunks/pages/_app-72b849fbd24ac258.js,sha256=QN-PY1h1HDIO4K4ZYwFl6rtEeaxWCynYauVLK_oWmzE,280
159
161
  voice_mode/frontend/.next/static/chunks/pages/_error-7ba65e1336b92748.js,sha256=oxr2dz6MkKWnm3jN3fWb2RPhCHB4-JgrzVMS_wTNr_E,247
@@ -161,12 +163,10 @@ voice_mode/frontend/.next/static/css/a2f49a47752b5010.css,sha256=7geCVBj6YoIVhB9
161
163
  voice_mode/frontend/.next/static/media/01099be941da1820-s.woff2,sha256=ZaNN8qxUZFV4kxOD_j6TGAYAHwR01MPDQloeIbMgCeg,10436
162
164
  voice_mode/frontend/.next/static/media/39883d31a7792467-s.p.woff2,sha256=i_qVPOm6vZ-H4B0Mk_d5yUQR_YKsz4XRc-8J2R_QWKs,14620
163
165
  voice_mode/frontend/.next/static/media/6368404d2e8d66fe-s.woff2,sha256=2GFQ1JjbLJOSmwrIsgCHPVMSJpcx2QX2i13kJbg8IFE,4464
164
- voice_mode/frontend/.next/static/wQ5pxzPmwjlzdUfJwSjMg/_buildManifest.js,sha256=UGi5XJhF4u-NRxMqU360JM2afxCS1essSVUEqY6sl5c,224
165
- voice_mode/frontend/.next/static/wQ5pxzPmwjlzdUfJwSjMg/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
166
166
  voice_mode/frontend/.next/types/package.json,sha256=49WkothVGqUsWgHSoO-y4GotlxG09cXx0g3m4hgH4s0,18
167
- voice_mode/frontend/.next/types/app/layout.ts,sha256=3pwixdH48L6en0CSYTzzNn2AEEgSwxs3c8eIbURqT8I,3511
168
- voice_mode/frontend/.next/types/app/page.ts,sha256=7wJHV12OzVB3Mkan5IyV50IZUUGfGTAvF9XTucTxOvc,3499
169
- voice_mode/frontend/.next/types/app/api/connection-details/route.ts,sha256=7SmvWdiuE1aahSqFNFshB8zmMNE4O-vKvfhRNMs9EYU,8531
167
+ voice_mode/frontend/.next/types/app/layout.ts,sha256=5dkzqyJFdk_6OuvtpORhKYTHc1TceSVlcK56b0esyz8,3511
168
+ voice_mode/frontend/.next/types/app/page.ts,sha256=l_MxUJ6auTjIuh4KNHgvuBO62b5qBeG4UJtfV4qGDpk,3499
169
+ voice_mode/frontend/.next/types/app/api/connection-details/route.ts,sha256=HbZqe0GdM48_TcXDcyltyRznPMbrcll_QX3Q-DVtbbU,8531
170
170
  voice_mode/frontend/app/favicon.ico,sha256=Cc2QdQ-OI3iME7dIf86sbqXHW3D8LPUprF_KB2KZogI,15406
171
171
  voice_mode/frontend/app/globals.css,sha256=yMCx8ta7sGyt40nzBTlRR644nlAGGYt73zj7e9YLgl4,362
172
172
  voice_mode/frontend/app/layout.tsx,sha256=Q0LYcf_Z8GT8zDhlWgk7XEZArp2ZS2HpB1tmv3epp68,537
@@ -201,29 +201,31 @@ voice_mode/templates/systemd/voicemode-livekit.service,sha256=hVjT4Vd0SOABXGYbp9
201
201
  voice_mode/templates/systemd/voicemode-whisper.service,sha256=aa5gIHI9xKF0M_DY6SO95QHRFhkV2JOzmFVo2U8RhN4,844
202
202
  voice_mode/tools/__init__.py,sha256=Hd8-dNoB58apt6PqMCfGHYDAeQWbarFrMRfxseJi8Jo,1069
203
203
  voice_mode/tools/configuration_management.py,sha256=V6a5sbCJVYARFg5NQpeXc-P63BW3eZA8WUFNk3l5GW0,8776
204
- voice_mode/tools/converse.py,sha256=HSQUsdStoYp-bzPijFYnDW7w2eGRRNVv3NsIs8hMErQ,95865
204
+ voice_mode/tools/converse.py,sha256=wK9tedB-0RXbAuZRY2aSNoS4jN_m1sD0w7Uvh6D3U5o,97024
205
205
  voice_mode/tools/dependencies.py,sha256=V72gS_bD0pCmW_be2Hxs_cEnIoNPFKlK7rE9cLMTDGE,6670
206
206
  voice_mode/tools/devices.py,sha256=v0KV-Rix2lKZMFfVcobHiJB_6NnPAJsuZI5LXYHlgl0,10446
207
207
  voice_mode/tools/diagnostics.py,sha256=pWl9wwaBMJubBKhWOVbNIGeYet84ECVshtPok-v2pl8,2059
208
208
  voice_mode/tools/providers.py,sha256=KuO5lFmSHjYUoK3hjIqx3l7XeNOLPMAeXQnTtH00Iow,7768
209
- voice_mode/tools/service.py,sha256=--G7BaxjwZMlgYdMaDFo16poymt-WPTsAO_tH2Ql4Ts,44492
209
+ voice_mode/tools/service.py,sha256=Nn9TtrFMfw3o_6G8SCiS5KTcrCSqIBXch5ww4uwIcbU,46033
210
210
  voice_mode/tools/statistics.py,sha256=XMljbNCBqatPgyh6rq1LZ3ICNEmji2c82P7pyCZfr8Q,9326
211
211
  voice_mode/tools/voice_registry.py,sha256=iw3O4C8lsdon9fr1ZMchc0Uq7MmSmTOYReY9NfQlEhU,2354
212
212
  voice_mode/tools/services/list_versions.py,sha256=r_FzHG_2dVxEzDXfxVfPInchGq1h9_4yvJ9ySkinsJk,2573
213
213
  voice_mode/tools/services/version_info.py,sha256=K5CzUlaIpHJKDnudfCeIydOwIhaDTOM59e8FQ1Yyj4A,11344
214
- voice_mode/tools/services/kokoro/install.py,sha256=9iG1XjgtjHCYreD4uF1oq4i7c5Vk6qhwcr9VyVh18T8,16422
214
+ voice_mode/tools/services/kokoro/install.py,sha256=G5rIXY0jfax0ayMqooHgmT-zSjibuNfhwmat3kfZqtE,16459
215
215
  voice_mode/tools/services/kokoro/uninstall.py,sha256=ww6x56uI5DP5IYvGK_UVEOyptGk9-Kj8RS_6nz-vVBE,9125
216
216
  voice_mode/tools/services/livekit/__init__.py,sha256=AzA9Bap9CNQRhtNKPxC5XO5H9Ihkd6tO2wnZEBfEfyk,169
217
217
  voice_mode/tools/services/livekit/frontend.py,sha256=-yu1K-mOUavY_RLI1CrieZgPFMrQvCdYh8F9qz4vxhQ,25809
218
218
  voice_mode/tools/services/livekit/install.py,sha256=1_LcZazXx_rygYs-H7MnHVBCu2QUWK6V51qFrQq_YHE,13043
219
219
  voice_mode/tools/services/livekit/production_server.py,sha256=8w8gBBs6O8nMqfzNQmsX6hkd46yVzwL3J-Zc1Dhe-bk,10324
220
220
  voice_mode/tools/services/livekit/uninstall.py,sha256=3XOYzNLQf7r9P4vORtoVb1bvJVyciiEPmt9UQh2ADBE,6146
221
- voice_mode/tools/services/whisper/__init__.py,sha256=D8u0jOnrUcqeTh13lF5yZcwQWV0xcyxD6U7B8weIUjg,444
222
- voice_mode/tools/services/whisper/download_model.py,sha256=CRs9L1BOSErKMhzIG2ArhoRgyvXlIQFM0sBhFhbKdmE,4893
223
- voice_mode/tools/services/whisper/install.py,sha256=hnAgCRr2Nr60fJmMScFSZGkT5H4tgb-1htt_G_rYrtg,22168
224
- voice_mode/tools/services/whisper/list_models.py,sha256=2jLsexu5PdIre3hgx6VAIuC93JQrqGr8CumbJada2Ls,2334
225
- voice_mode/tools/services/whisper/list_models_tool.py,sha256=SDQeY00hmtVlQyAkoZ6LpYZUE1n08oFiYHEgPp63248,2136
226
- voice_mode/tools/services/whisper/models.py,sha256=B1WKjI6EBgPXuMiSmpWpZzFvx7QGlghyu-u5FVitMcU,8192
221
+ voice_mode/tools/services/whisper/__init__.py,sha256=xyYW6M3n7dUUlmuiK5gNfv82kp0Jd4KHJ5Bsz2gE-s8,928
222
+ voice_mode/tools/services/whisper/install.py,sha256=PUujgpOFTBDTcJfVEbIQITESgm3q4j9BhCn8lkx9Gxg,23488
223
+ voice_mode/tools/services/whisper/list_models.py,sha256=Qvz2hlws48ZrLYp4_bUtCWVGLAZTbTo-s5x4wtyF9GQ,2415
224
+ voice_mode/tools/services/whisper/model_active.py,sha256=RnaffTHJYrBburpA6LCJQzP_wjHFPKZXKPs7QItTfJw,1693
225
+ voice_mode/tools/services/whisper/model_benchmark.py,sha256=nGGQvvQFzyvh_KvUFHh0Qf6e-qMY03ZYfSDECOmudXc,5803
226
+ voice_mode/tools/services/whisper/model_install.py,sha256=EDIyYkJrRjbQjZkTrQawcWMaBwL6DsWWcqqMgebZQ5k,8073
227
+ voice_mode/tools/services/whisper/model_remove.py,sha256=zlt4C7uxvdPSUNge-dMsfLNYTPDwWa6eXRBGGVzV11Y,1139
228
+ voice_mode/tools/services/whisper/models.py,sha256=qUILFOVxZbuTReP46sKPHiJU5YGnjh1ls700Q2byywU,14906
227
229
  voice_mode/tools/services/whisper/uninstall.py,sha256=M81JCwCSbmV_tnuXB1jkn-V9BhSqmwAQVpHKbb62skc,8393
228
230
  voice_mode/utils/__init__.py,sha256=dYWYo-k65hbgnvBErFmSXjpTvMU46QMkjO7_e0umZj4,609
229
231
  voice_mode/utils/audio_diagnostics.py,sha256=bYqLOdXUmOkFkTPvk2HvutWRSWIpCSAv5mDMu8StzJw,6597
@@ -236,8 +238,9 @@ voice_mode/utils/version_helpers.py,sha256=--DMVBojs3EH9I-wkNSx87lfNWpCfvZBjecvt
236
238
  voice_mode/utils/services/common.py,sha256=tMzsQ8ZSmTvZdlHEuiuPX7hmX2XAc3Zbtb1vf66RbPU,2990
237
239
  voice_mode/utils/services/kokoro_helpers.py,sha256=VE3wa9cI2ZIc95ro58aaKVKdAE7DPXmZQLxml3QYbcI,1206
238
240
  voice_mode/utils/services/livekit_helpers.py,sha256=OFw0GxVIJAZE2m9dGCDZVegWD-LnMO6iSjcOUDgAA9U,3627
239
- voice_mode/utils/services/whisper_helpers.py,sha256=8guaPTWXS0bM289Wp-IpxQsS61Ll93dJCIyUi-ZV0Ok,8493
240
- voice_mode-2.27.0.dist-info/METADATA,sha256=GrN4aYCLBc-h2zoWetFl5SbOyYFePU4_ZC95KcLK3Dw,24618
241
- voice_mode-2.27.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
242
- voice_mode-2.27.0.dist-info/entry_points.txt,sha256=hS5faHc0R5Fde3Z_uvz8u6YkRIYtvh17X8tVN90Rbro,95
243
- voice_mode-2.27.0.dist-info/RECORD,,
241
+ voice_mode/utils/services/whisper_helpers.py,sha256=plNr64qNvY5gTlixvLflkB7gS-XvjHpB-YqWc9di0YM,18591
242
+ voice_mode/utils/services/whisper_version.py,sha256=68e0Oa-tG73IJlla-e3P0sh_qzBF4ToYBe4KKZ2FvEY,4861
243
+ voice_mode-2.28.0.dist-info/METADATA,sha256=bWcZu5vTJtLou6aBFbR7GDheqGLU5CvyaL_jNsYY48I,24918
244
+ voice_mode-2.28.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
245
+ voice_mode-2.28.0.dist-info/entry_points.txt,sha256=hS5faHc0R5Fde3Z_uvz8u6YkRIYtvh17X8tVN90Rbro,95
246
+ voice_mode-2.28.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[931],{995:function(e,t,n){Promise.resolve().then(n.bind(n,6924))},6924:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return m}});var s=n(7437);function i(){return(0,s.jsx)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,s.jsx)("path",{d:"M3.33398 3.33334L12.6673 12.6667M12.6673 3.33334L3.33398 12.6667",stroke:"currentColor","stroke-width":"2","stroke-linecap":"square"})})}var a=n(2265);function r(e){let t=(0,a.useRef)(null),[n,i]=(0,a.useState)(!1),r=(0,a.useRef)(!1);return["listening","thinking","speaking"].includes(e.state)&&!1==r.current&&(r.current=!0),(0,a.useEffect)(()=>("connecting"===e.state?t.current=window.setTimeout(()=>{"connecting"===e.state&&!1===r.current&&i(!0)},1e4):(t.current&&window.clearTimeout(t.current),i(!1)),()=>{t.current&&window.clearTimeout(t.current)}),[e.state]),(0,s.jsx)(s.Fragment,{children:n?(0,s.jsxs)("div",{className:"fixed text-sm left-1/2 max-w-[90vw] -translate-x-1/2 flex top-6 items-center gap-4 bg-[#1F1F1F] px-4 py-3 rounded-lg",children:[(0,s.jsx)("div",{children:(0,s.jsx)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,s.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.85068 3.63564C10.8197 2.00589 13.1793 2.00589 14.1484 3.63564L21.6323 16.2223C22.6232 17.8888 21.4223 20 19.4835 20H4.51555C2.57676 20 1.37584 17.8888 2.36671 16.2223L9.85068 3.63564ZM12 8.5C12.2761 8.5 12.5 8.72386 12.5 9V13.5C12.5 13.7761 12.2761 14 12 14C11.7239 14 11.5 13.7761 11.5 13.5V9C11.5 8.72386 11.7239 8.5 12 8.5ZM12.75 16C12.75 16.4142 12.4142 16.75 12 16.75C11.5858 16.75 11.25 16.4142 11.25 16C11.25 15.5858 11.5858 15.25 12 15.25C12.4142 15.25 12.75 15.5858 12.75 16Z",fill:"#666666"})})}),(0,s.jsx)("p",{className:"text-pretty w-max",children:"It's quiet... too quiet. Is your agent lost? Ensure your agent is properly configured and running on your machine."}),(0,s.jsx)("a",{href:"https://docs.livekit.io/agents/quickstarts/s2s/",target:"_blank",className:"underline whitespace-nowrap",children:"View guide"}),(0,s.jsx)("button",{onClick:()=>i(!1),children:(0,s.jsx)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,s.jsx)("path",{d:"M3.16602 3.16666L12.8327 12.8333M12.8327 3.16666L3.16602 12.8333",stroke:"#999999",strokeWidth:"1.5",strokeLinecap:"square"})})})]}):null})}var o=n(7933),l=n(3819);function c(){let e=function(){let{agentTranscriptions:e}=(0,o.V)(),t=function(){let{microphoneTrack:e,localParticipant:t}=(0,o.C)();return(0,a.useMemo)(()=>({participant:t,source:l.fQ.Source.Microphone,publication:e}),[t,e])}(),{segments:n}=(0,o.U)(t);return(0,a.useMemo)(()=>[...e.map(e=>({...e,role:"assistant"})),...n.map(e=>({...e,role:"user"}))].sort((e,t)=>e.firstReceivedTime-t.firstReceivedTime),[e,n])}(),t=a.useRef(null);return a.useEffect(()=>{t.current&&(t.current.scrollTop=t.current.scrollHeight)},[e]),(0,s.jsxs)("div",{className:"relative h-[200px] w-[512px] max-w-[90vw] mx-auto",children:[(0,s.jsx)("div",{className:"absolute top-0 left-0 right-0 h-8 bg-gradient-to-b from-[var(--lk-bg)] to-transparent z-10 pointer-events-none"}),(0,s.jsx)("div",{className:"absolute bottom-0 left-0 right-0 h-8 bg-gradient-to-t from-[var(--lk-bg)] to-transparent z-10 pointer-events-none"}),(0,s.jsx)("div",{ref:t,className:"h-full flex flex-col gap-2 overflow-y-auto px-4 py-8",children:e.map(e=>(0,s.jsx)("div",{id:e.id,className:"assistant"===e.role?"p-2 self-start fit-content":"bg-gray-800 rounded-md p-2 self-end fit-content",children:e.text},e.id))})]})}var d=n(9426),u=n(2297),p=n(168),x=n(8614),h=n(521),f=n(257);function m(){let[e]=(0,a.useState)(new l.du),[t,n]=(0,a.useState)(""),[i,r]=(0,a.useState)(""),o=(0,a.useCallback)(async()=>{var n;r("");let s=new URL(null!==(n=f.env.NEXT_PUBLIC_CONN_DETAILS_ENDPOINT)&&void 0!==n?n:"/api/connection-details",window.location.origin);s.searchParams.set("password",t);let i=await fetch(s.toString());if(!i.ok){401===i.status?r("Invalid password"):r("Connection failed");return}let a=await i.json();await e.connect(a.serverUrl,a.participantToken),await e.localParticipant.setMicrophoneEnabled(!0)},[e,t]);return(0,a.useEffect)(()=>(e.on(l.TQ.MediaDevicesError,j),()=>{e.off(l.TQ.MediaDevicesError,j)}),[e]),(0,s.jsx)("main",{"data-lk-theme":"default",className:"h-full grid content-center bg-[var(--lk-bg)]",children:(0,s.jsx)(d.R.Provider,{value:e,children:(0,s.jsx)("div",{className:"lk-room-container max-w-[1024px] w-[90vw] mx-auto max-h-[90vh]",children:(0,s.jsx)(w,{onConnectButtonClicked:o,password:t,setPassword:n,error:i})})})})}function w(e){let{state:t}=(0,o.V)();return(0,s.jsx)(s.Fragment,{children:(0,s.jsx)(x.M,{mode:"wait",children:"disconnected"===t?(0,s.jsx)(h.E.div,{initial:{opacity:0,scale:.95},animate:{opacity:1,scale:1},exit:{opacity:0,scale:.95},transition:{duration:.3,ease:[.09,1.04,.245,1.055]},className:"grid items-center justify-center h-full",children:(0,s.jsxs)("div",{className:"flex flex-col items-center gap-4",children:[(0,s.jsx)("input",{type:"password",placeholder:"Enter password",value:e.password,onChange:t=>e.setPassword(t.target.value),onKeyPress:t=>{"Enter"===t.key&&e.onConnectButtonClicked()},className:"px-4 py-2 bg-gray-800 text-white rounded-md focus:outline-none focus:ring-2 focus:ring-white"}),e.error&&(0,s.jsx)("p",{className:"text-red-500 text-sm",children:e.error}),(0,s.jsx)(h.E.button,{initial:{opacity:0},animate:{opacity:1},transition:{duration:.3,delay:.1},className:"uppercase px-4 py-2 bg-white text-black rounded-md",onClick:()=>e.onConnectButtonClicked(),children:"Start a conversation"})]})},"disconnected"):(0,s.jsxs)(h.E.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},transition:{duration:.3,ease:[.09,1.04,.245,1.055]},className:"flex flex-col items-center gap-4 h-full",children:[(0,s.jsx)(g,{}),(0,s.jsx)("div",{className:"flex-1 w-full",children:(0,s.jsx)(c,{})}),(0,s.jsx)("div",{className:"w-full",children:(0,s.jsx)(v,{onConnectButtonClicked:e.onConnectButtonClicked})}),(0,s.jsx)(u.R,{}),(0,s.jsx)(r,{state:t})]},"connected")})})}function g(){let{state:e,videoTrack:t,audioTrack:n}=(0,o.V)();return t?(0,s.jsx)("div",{className:"h-[512px] w-[512px] rounded-lg overflow-hidden",children:(0,s.jsx)(u.V,{trackRef:t})}):(0,s.jsx)("div",{className:"h-[300px] w-full",children:(0,s.jsx)(u.B,{state:e,barCount:5,trackRef:n,className:"agent-visualizer",options:{minHeight:24}})})}function v(e){let{state:t}=(0,o.V)();return(0,s.jsxs)("div",{className:"relative h-[60px]",children:[(0,s.jsx)(x.M,{children:"disconnected"===t&&(0,s.jsx)(h.E.button,{initial:{opacity:0,top:0},animate:{opacity:1},exit:{opacity:0,top:"-10px"},transition:{duration:1,ease:[.09,1.04,.245,1.055]},className:"uppercase absolute left-1/2 -translate-x-1/2 px-4 py-2 bg-white text-black rounded-md",onClick:()=>e.onConnectButtonClicked(),children:"Start a conversation"})}),(0,s.jsx)(x.M,{children:"disconnected"!==t&&"connecting"!==t&&(0,s.jsxs)(h.E.div,{initial:{opacity:0,top:"10px"},animate:{opacity:1,top:0},exit:{opacity:0,top:"-10px"},transition:{duration:.4,ease:[.09,1.04,.245,1.055]},className:"flex h-8 absolute left-1/2 -translate-x-1/2 justify-center",children:[(0,s.jsx)(p.P6,{controls:{leave:!1}}),(0,s.jsx)(u.D,{children:(0,s.jsx)(i,{})})]})})]})}function j(e){console.error(e),alert("Error acquiring camera or microphone permissions. Please make sure you grant the necessary permissions in your browser and reload the tab")}}},function(e){e.O(0,[481,471,971,117,744],function(){return e(e.s=995)}),_N_E=e.O()}]);
@@ -1,65 +0,0 @@
1
- """MCP tool for listing Whisper models."""
2
-
3
- from voice_mode.server import mcp
4
- from voice_mode.tools.services.whisper.list_models import list_whisper_models
5
-
6
-
7
- @mcp.tool()
8
- async def whisper_list_models() -> str:
9
- """List available Whisper models and their installation status.
10
-
11
- Shows all available Whisper models with:
12
- - Installation status (installed/not installed)
13
- - Model sizes
14
- - Language support
15
- - Currently selected model
16
-
17
- Returns:
18
- Formatted string showing model status and information
19
- """
20
- result = await list_whisper_models()
21
-
22
- if not result["success"]:
23
- return f"Error listing models: {result.get('error', 'Unknown error')}"
24
-
25
- # Format output
26
- output = ["Whisper Models:", ""]
27
-
28
- # Check if we should show Core ML column
29
- show_coreml = any(model.get("has_coreml", False) for model in result["models"])
30
-
31
- for model in result["models"]:
32
- # Format status indicators
33
- current = "→ " if model["current"] else " "
34
- installed = "[✓ Installed]" if model["installed"] else "[ Download ]"
35
-
36
- # Add Core ML indicator if on macOS
37
- coreml = ""
38
- if show_coreml:
39
- coreml = "[ML]" if model.get("has_coreml", False) else " "
40
-
41
- # Format model line
42
- line = f"{current}{model['name']:15} {installed:14} {coreml} {model['size']:>8} {model['languages']:20}"
43
- if model["current"]:
44
- line += " (Currently selected)"
45
-
46
- output.append(line)
47
-
48
- # Add footer
49
- footer = [
50
- "",
51
- f"Models directory: {result['model_directory']}",
52
- f"Total size: {result['installed_size']} installed / {result['available_size']} available",
53
- "",
54
- f"Installed models: {result['installed_count']}/{result['total_count']}",
55
- f"Current model: {result['current_model']}"
56
- ]
57
-
58
- # Add Core ML note if on macOS
59
- if show_coreml:
60
- footer.append("")
61
- footer.append("[ML] = Core ML model available for faster inference on Apple Silicon")
62
-
63
- output.extend(footer)
64
-
65
- return "\n".join(output)