Merge pull request #3450 from subzero5544/top-k-fix Fix top_k text value not being able to go up to 500, like the slider does

32ec475ca2261bb913919ead49011d6e748c31c4

Wolfsblvt <wolfsblvt@gmail.com>

Signed
1 files changed, +1 -1Showing whitespace changes
public/index.html+1 -1
@@ -730,7 +730,7 @@
730 <input type="range" id="top_k_openai" name="volume" min="0" max="500" step="1">730 <input type="range" id="top_k_openai" name="volume" min="0" max="500" step="1">
731 </div>731 </div>
732 <div class="range-block-counter">732 <div class="range-block-counter">
733 <input type="number" min="0" max="200" step="1" data-for="top_k_openai" id="top_k_counter_openai">733 <input type="number" min="0" max="500" step="1" data-for="top_k_openai" id="top_k_counter_openai">
734 </div>734 </div>
735 </div>735 </div>
736 </div>736 </div>