Spaces:
Running
Running
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="
|
59 |
/>
|
60 |
</div>
|
61 |
<input
|
@@ -64,7 +64,7 @@
|
|
64 |
bind:value={maxTokens}
|
65 |
min="1"
|
66 |
max="32000"
|
67 |
-
step="
|
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>
|