main
html 35 lines 940 Bytes
Raw
1 <html>
2 <head>
3 <title>Voice</title>
4 </head>
5
6 <body>
7 <div x-data>
8 <div class="section-title">Voice</div>
9 <div class="section-description">
10 Voice capabilities are provided by built-in plugins. Browser-native
11 speech remains available as the fallback output path when no TTS plugin
12 is active. Enable or disable providers from the Agent Plugins section
13 below.
14 </div>
15
16 <x-extension id="voice-settings-start"></x-extension>
17 <div class="voice-settings-grid">
18 <x-extension id="voice-settings-main"></x-extension>
19 </div>
20 <x-extension id="voice-settings-end"></x-extension>
21 </div>
22
23 <style>
24 .voice-settings-grid {
25 display: grid;
26 gap: 12px;
27 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
28 }
29
30 .voice-settings-grid > x-extension {
31 display: contents;
32 }
33 </style>
34 </body>
35 </html>