Add input class
| @@ -108,7 +108,7 @@ class ChatterboxTtsProvider { | ||
| 108 | 108 | // Seed |
| 109 | 109 | html += `<div class="chatterbox-setting-row"> |
| 110 | 110 | <label for="chatterbox-seed">Seed (-1 for random):</label> |
| 111 | 111 | <input id="chatterbox-seed" class="text_pole" type="number" min="-1" value="${this.settings.seed}" /> |
| 112 | 112 | </div>`; |
| 113 | 113 | |
| 114 | 114 | // Text chunking |
| @@ -122,7 +122,7 @@ class ChatterboxTtsProvider { | ||
| 122 | 122 | // Chunk size |
| 123 | 123 | html += `<div class="chatterbox-setting-row" id="chunk-size-row" ${!this.settings.split_text ? 'style="display: none;"' : ''}> |
| 124 | 124 | <label for="chatterbox-chunk-size">Chunk Size:</label> |
| 125 | 125 | <input id="chatterbox-chunk-size" class="text_pole" type="number" min="50" max="500" value="${this.settings.chunk_size}" /> |
| 126 | 126 | </div>`; |
| 127 | 127 | |
| 128 | 128 | // Output format |