voice-mode 2.34.2__py3-none-any.whl → 4.0.1__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 (156) hide show
  1. voice_mode/__version__.py +1 -1
  2. voice_mode/cli.py +5 -0
  3. voice_mode/cli_commands/transcribe.py +141 -0
  4. voice_mode/config.py +139 -37
  5. voice_mode/frontend/.next/BUILD_ID +1 -0
  6. voice_mode/frontend/.next/app-build-manifest.json +28 -0
  7. voice_mode/frontend/.next/app-path-routes-manifest.json +1 -0
  8. voice_mode/frontend/.next/build-manifest.json +32 -0
  9. voice_mode/frontend/.next/export-marker.json +1 -0
  10. voice_mode/frontend/.next/images-manifest.json +1 -0
  11. voice_mode/frontend/.next/next-minimal-server.js.nft.json +1 -0
  12. voice_mode/frontend/.next/next-server.js.nft.json +1 -0
  13. voice_mode/frontend/.next/package.json +1 -0
  14. voice_mode/frontend/.next/prerender-manifest.json +1 -0
  15. voice_mode/frontend/.next/react-loadable-manifest.json +1 -0
  16. voice_mode/frontend/.next/required-server-files.json +1 -0
  17. voice_mode/frontend/.next/routes-manifest.json +1 -0
  18. voice_mode/frontend/.next/server/app/_not-found/page.js +1 -0
  19. voice_mode/frontend/.next/server/app/_not-found/page.js.nft.json +1 -0
  20. voice_mode/frontend/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  21. voice_mode/frontend/.next/server/app/_not-found.html +1 -0
  22. voice_mode/frontend/.next/server/app/_not-found.meta +6 -0
  23. voice_mode/frontend/.next/server/app/_not-found.rsc +9 -0
  24. voice_mode/frontend/.next/server/app/api/connection-details/route.js +12 -0
  25. voice_mode/frontend/.next/server/app/api/connection-details/route.js.nft.json +1 -0
  26. voice_mode/frontend/.next/server/app/favicon.ico/route.js +12 -0
  27. voice_mode/frontend/.next/server/app/favicon.ico/route.js.nft.json +1 -0
  28. voice_mode/frontend/.next/server/app/favicon.ico.body +0 -0
  29. voice_mode/frontend/.next/server/app/favicon.ico.meta +1 -0
  30. voice_mode/frontend/.next/server/app/index.html +1 -0
  31. voice_mode/frontend/.next/server/app/index.meta +5 -0
  32. voice_mode/frontend/.next/server/app/index.rsc +7 -0
  33. voice_mode/frontend/.next/server/app/page.js +11 -0
  34. voice_mode/frontend/.next/server/app/page.js.nft.json +1 -0
  35. voice_mode/frontend/.next/server/app/page_client-reference-manifest.js +1 -0
  36. voice_mode/frontend/.next/server/app-paths-manifest.json +6 -0
  37. voice_mode/frontend/.next/server/chunks/463.js +1 -0
  38. voice_mode/frontend/.next/server/chunks/682.js +6 -0
  39. voice_mode/frontend/.next/server/chunks/948.js +2 -0
  40. voice_mode/frontend/.next/server/chunks/994.js +2 -0
  41. voice_mode/frontend/.next/server/chunks/font-manifest.json +1 -0
  42. voice_mode/frontend/.next/server/font-manifest.json +1 -0
  43. voice_mode/frontend/.next/server/functions-config-manifest.json +1 -0
  44. voice_mode/frontend/.next/server/interception-route-rewrite-manifest.js +1 -0
  45. voice_mode/frontend/.next/server/middleware-build-manifest.js +1 -0
  46. voice_mode/frontend/.next/server/middleware-manifest.json +6 -0
  47. voice_mode/frontend/.next/server/middleware-react-loadable-manifest.js +1 -0
  48. voice_mode/frontend/.next/server/next-font-manifest.js +1 -0
  49. voice_mode/frontend/.next/server/next-font-manifest.json +1 -0
  50. voice_mode/frontend/.next/server/pages/404.html +1 -0
  51. voice_mode/frontend/.next/server/pages/500.html +1 -0
  52. voice_mode/frontend/.next/server/pages/_app.js +1 -0
  53. voice_mode/frontend/.next/server/pages/_app.js.nft.json +1 -0
  54. voice_mode/frontend/.next/server/pages/_document.js +1 -0
  55. voice_mode/frontend/.next/server/pages/_document.js.nft.json +1 -0
  56. voice_mode/frontend/.next/server/pages/_error.js +1 -0
  57. voice_mode/frontend/.next/server/pages/_error.js.nft.json +1 -0
  58. voice_mode/frontend/.next/server/pages-manifest.json +1 -0
  59. voice_mode/frontend/.next/server/server-reference-manifest.js +1 -0
  60. voice_mode/frontend/.next/server/server-reference-manifest.json +1 -0
  61. voice_mode/frontend/.next/server/webpack-runtime.js +1 -0
  62. voice_mode/frontend/.next/standalone/.next/BUILD_ID +1 -0
  63. voice_mode/frontend/.next/standalone/.next/app-build-manifest.json +28 -0
  64. voice_mode/frontend/.next/standalone/.next/app-path-routes-manifest.json +1 -0
  65. voice_mode/frontend/.next/standalone/.next/build-manifest.json +32 -0
  66. voice_mode/frontend/.next/standalone/.next/package.json +1 -0
  67. voice_mode/frontend/.next/standalone/.next/prerender-manifest.json +1 -0
  68. voice_mode/frontend/.next/standalone/.next/react-loadable-manifest.json +1 -0
  69. voice_mode/frontend/.next/standalone/.next/required-server-files.json +1 -0
  70. voice_mode/frontend/.next/standalone/.next/routes-manifest.json +1 -0
  71. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js +1 -0
  72. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page.js.nft.json +1 -0
  73. voice_mode/frontend/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  74. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.html +1 -0
  75. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.meta +6 -0
  76. voice_mode/frontend/.next/standalone/.next/server/app/_not-found.rsc +9 -0
  77. voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js +12 -0
  78. voice_mode/frontend/.next/standalone/.next/server/app/api/connection-details/route.js.nft.json +1 -0
  79. voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js +12 -0
  80. voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico/route.js.nft.json +1 -0
  81. voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico.body +0 -0
  82. voice_mode/frontend/.next/standalone/.next/server/app/favicon.ico.meta +1 -0
  83. voice_mode/frontend/.next/standalone/.next/server/app/index.html +1 -0
  84. voice_mode/frontend/.next/standalone/.next/server/app/index.meta +5 -0
  85. voice_mode/frontend/.next/standalone/.next/server/app/index.rsc +7 -0
  86. voice_mode/frontend/.next/standalone/.next/server/app/page.js +11 -0
  87. voice_mode/frontend/.next/standalone/.next/server/app/page.js.nft.json +1 -0
  88. voice_mode/frontend/.next/standalone/.next/server/app/page_client-reference-manifest.js +1 -0
  89. voice_mode/frontend/.next/standalone/.next/server/app-paths-manifest.json +6 -0
  90. voice_mode/frontend/.next/standalone/.next/server/chunks/463.js +1 -0
  91. voice_mode/frontend/.next/standalone/.next/server/chunks/682.js +6 -0
  92. voice_mode/frontend/.next/standalone/.next/server/chunks/948.js +2 -0
  93. voice_mode/frontend/.next/standalone/.next/server/chunks/994.js +2 -0
  94. voice_mode/frontend/.next/standalone/.next/server/font-manifest.json +1 -0
  95. voice_mode/frontend/.next/standalone/.next/server/middleware-build-manifest.js +1 -0
  96. voice_mode/frontend/.next/standalone/.next/server/middleware-manifest.json +6 -0
  97. voice_mode/frontend/.next/standalone/.next/server/middleware-react-loadable-manifest.js +1 -0
  98. voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.js +1 -0
  99. voice_mode/frontend/.next/standalone/.next/server/next-font-manifest.json +1 -0
  100. voice_mode/frontend/.next/standalone/.next/server/pages/404.html +1 -0
  101. voice_mode/frontend/.next/standalone/.next/server/pages/500.html +1 -0
  102. voice_mode/frontend/.next/standalone/.next/server/pages/_app.js +1 -0
  103. voice_mode/frontend/.next/standalone/.next/server/pages/_app.js.nft.json +1 -0
  104. voice_mode/frontend/.next/standalone/.next/server/pages/_document.js +1 -0
  105. voice_mode/frontend/.next/standalone/.next/server/pages/_document.js.nft.json +1 -0
  106. voice_mode/frontend/.next/standalone/.next/server/pages/_error.js +1 -0
  107. voice_mode/frontend/.next/standalone/.next/server/pages/_error.js.nft.json +1 -0
  108. voice_mode/frontend/.next/standalone/.next/server/pages-manifest.json +1 -0
  109. voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.js +1 -0
  110. voice_mode/frontend/.next/standalone/.next/server/server-reference-manifest.json +1 -0
  111. voice_mode/frontend/.next/standalone/.next/server/webpack-runtime.js +1 -0
  112. voice_mode/frontend/.next/standalone/package.json +40 -0
  113. voice_mode/frontend/.next/standalone/server.js +38 -0
  114. voice_mode/frontend/.next/static/c5TIe90lGzrESrqJkkXQa/_buildManifest.js +1 -0
  115. voice_mode/frontend/.next/static/c5TIe90lGzrESrqJkkXQa/_ssgManifest.js +1 -0
  116. voice_mode/frontend/.next/static/chunks/117-40bc79a2b97edb21.js +2 -0
  117. voice_mode/frontend/.next/static/chunks/144d3bae-2d5f122b82426d88.js +1 -0
  118. voice_mode/frontend/.next/static/chunks/471-bd4b96a33883dfa2.js +3 -0
  119. voice_mode/frontend/.next/static/chunks/app/_not-found/page-5011050e402ab9c8.js +1 -0
  120. voice_mode/frontend/.next/static/chunks/app/layout-0074dd8ab91cdbe0.js +1 -0
  121. voice_mode/frontend/.next/static/chunks/app/page-ae5f3aa9d9ba5993.js +1 -0
  122. voice_mode/frontend/.next/static/chunks/fd9d1056-af324d327b243cf1.js +1 -0
  123. voice_mode/frontend/.next/static/chunks/framework-f66176bb897dc684.js +1 -0
  124. voice_mode/frontend/.next/static/chunks/main-3163eca598b76a9f.js +1 -0
  125. voice_mode/frontend/.next/static/chunks/main-app-233f6c633f73ae84.js +1 -0
  126. voice_mode/frontend/.next/static/chunks/pages/_app-72b849fbd24ac258.js +1 -0
  127. voice_mode/frontend/.next/static/chunks/pages/_error-7ba65e1336b92748.js +1 -0
  128. voice_mode/frontend/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  129. voice_mode/frontend/.next/static/chunks/webpack-0ea9b80f19935b70.js +1 -0
  130. voice_mode/frontend/.next/static/css/a2f49a47752b5010.css +3 -0
  131. voice_mode/frontend/.next/static/media/01099be941da1820-s.woff2 +0 -0
  132. voice_mode/frontend/.next/static/media/39883d31a7792467-s.p.woff2 +0 -0
  133. voice_mode/frontend/.next/static/media/6368404d2e8d66fe-s.woff2 +0 -0
  134. voice_mode/frontend/.next/trace +43 -0
  135. voice_mode/frontend/.next/types/app/api/connection-details/route.ts +343 -0
  136. voice_mode/frontend/.next/types/app/layout.ts +79 -0
  137. voice_mode/frontend/.next/types/app/page.ts +79 -0
  138. voice_mode/frontend/.next/types/package.json +1 -0
  139. voice_mode/frontend/package-lock.json +154 -1
  140. voice_mode/providers.py +7 -8
  141. voice_mode/resources/configuration.py +2 -2
  142. voice_mode/tools/configuration_management.py +106 -5
  143. voice_mode/tools/converse.py +98 -0
  144. voice_mode/tools/service.py +1 -7
  145. voice_mode/tools/transcription/__init__.py +14 -0
  146. voice_mode/tools/transcription/backends.py +287 -0
  147. voice_mode/tools/transcription/core.py +136 -0
  148. voice_mode/tools/transcription/formats.py +144 -0
  149. voice_mode/tools/transcription/types.py +52 -0
  150. voice_mode/utils/services/kokoro_helpers.py +16 -3
  151. {voice_mode-2.34.2.dist-info → voice_mode-4.0.1.dist-info}/METADATA +5 -2
  152. voice_mode-4.0.1.dist-info/RECORD +255 -0
  153. voice_mode/voice_preferences.py +0 -125
  154. voice_mode-2.34.2.dist-info/RECORD +0 -116
  155. {voice_mode-2.34.2.dist-info → voice_mode-4.0.1.dist-info}/WHEEL +0 -0
  156. {voice_mode-2.34.2.dist-info → voice_mode-4.0.1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1 @@
1
+ {"version":1,"files":["../../../../node_modules/next/dist/client/components/action-async-storage-instance.js","../../../../node_modules/next/dist/client/components/action-async-storage.external.js","../../../../node_modules/next/dist/client/components/async-local-storage.js","../../../../node_modules/next/dist/client/components/request-async-storage-instance.js","../../../../node_modules/next/dist/client/components/request-async-storage.external.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/package.json","../../../../package.json","../../../package.json","../../chunks/948.js","../../webpack-runtime.js"]}
@@ -0,0 +1 @@
1
+ {"status":200,"headers":{"cache-control":"public, max-age=0, must-revalidate","content-type":"image/x-icon","x-next-cache-tags":"_N_T_/layout,_N_T_/favicon.ico/layout,_N_T_/favicon.ico/route,_N_T_/favicon.ico"}}
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="h-full __className_8ff03a"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/39883d31a7792467-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/a2f49a47752b5010.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-0ea9b80f19935b70.js"/><script src="/_next/static/chunks/fd9d1056-af324d327b243cf1.js" async=""></script><script src="/_next/static/chunks/117-40bc79a2b97edb21.js" async=""></script><script src="/_next/static/chunks/main-app-233f6c633f73ae84.js" async=""></script><script src="/_next/static/chunks/144d3bae-2d5f122b82426d88.js" async=""></script><script src="/_next/static/chunks/471-bd4b96a33883dfa2.js" async=""></script><script src="/_next/static/chunks/app/page-ae5f3aa9d9ba5993.js" async=""></script><title>Voice Assistant</title><link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="16x16"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="h-full"><main data-lk-theme="default" class="h-full grid content-center bg-[var(--lk-bg)]"><div class="lk-room-container max-w-[1024px] w-[90vw] mx-auto max-h-[90vh]"><div class="grid items-center justify-center h-full" style="opacity:0;transform:scale(0.95)"><div class="flex flex-col items-center gap-4"><input type="password" placeholder="Enter password" class="px-4 py-2 bg-gray-800 text-white rounded-md focus:outline-none focus:ring-2 focus:ring-white" value=""/><button class="uppercase px-4 py-2 bg-white text-black rounded-md" style="opacity:0">Start a conversation</button></div></div></div></main><script src="/_next/static/chunks/webpack-0ea9b80f19935b70.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/39883d31a7792467-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/a2f49a47752b5010.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[2846,[],\"\"]\n5:I[9107,[],\"ClientPageRoot\"]\n6:I[6924,[\"481\",\"static/chunks/144d3bae-2d5f122b82426d88.js\",\"471\",\"static/chunks/471-bd4b96a33883dfa2.js\",\"931\",\"static/chunks/app/page-ae5f3aa9d9ba5993.js\"],\"default\",1]\n7:I[4707,[],\"\"]\n8:I[6423,[],\"\"]\na:I[1060,[],\"\"]\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"c5TIe90lGzrESrqJkkXQa\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"\"],\"initialTree\":[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"$L5\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$6\"}],null],null],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/a2f49a47752b5010.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"h-full __className_8ff03a\",\"children\":[\"$\",\"body\",null,{\"className\":\"h-full\",\"children\":[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L9\"],\"globalErrorComponent\":\"$a\",\"missingSlots\":\"$Wb\"}]\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Voice Assistant\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"16x16\"}],[\"$\",\"meta\",\"4\",{\"name\":\"next-size-adjust\"}]]\n4:null\n"])</script></body></html>
@@ -0,0 +1,5 @@
1
+ {
2
+ "headers": {
3
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/page,_N_T_/"
4
+ }
5
+ }
@@ -0,0 +1,7 @@
1
+ 2:I[9107,[],"ClientPageRoot"]
2
+ 3:I[6924,["481","static/chunks/144d3bae-2d5f122b82426d88.js","471","static/chunks/471-bd4b96a33883dfa2.js","931","static/chunks/app/page-ae5f3aa9d9ba5993.js"],"default",1]
3
+ 4:I[4707,[],""]
4
+ 5:I[6423,[],""]
5
+ 0:["c5TIe90lGzrESrqJkkXQa",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a2f49a47752b5010.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","className":"h-full __className_8ff03a","children":["$","body",null,{"className":"h-full","children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
6
+ 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Voice Assistant"}],["$","link","3",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}],["$","meta","4",{"name":"next-size-adjust"}]]
7
+ 1:null