victor HF staff commited on
Commit
1546a46
·
1 Parent(s): 8dc43df

Increased the step size of the max tokens slider to 32 to improve user experience.

Browse files
src/lib/components/Playground/PlaygroundOptions.svelte CHANGED
@@ -55,7 +55,7 @@
55
  bind:value={maxTokens}
56
  min="1"
57
  max="32000"
58
- step="1"
59
  />
60
  </div>
61
  <input
@@ -64,7 +64,7 @@
64
  bind:value={maxTokens}
65
  min="1"
66
  max="32000"
67
- step="1"
68
  class="h-2 w-full cursor-pointer appearance-none rounded-lg bg-gray-200 accent-black dark:bg-gray-700"
69
  />
70
  </div>
 
55
  bind:value={maxTokens}
56
  min="1"
57
  max="32000"
58
+ step="32"
59
  />
60
  </div>
61
  <input
 
64
  bind:value={maxTokens}
65
  min="1"
66
  max="32000"
67
+ step="32"
68
  class="h-2 w-full cursor-pointer appearance-none rounded-lg bg-gray-200 accent-black dark:bg-gray-700"
69
  />
70
  </div>