Spaces:
Build error
Build error
<script lang="ts"> | |
import Switch from '$lib/components/common/Switch.svelte'; | |
import Tooltip from '$lib/components/common/Tooltip.svelte'; | |
import { getContext, createEventDispatcher } from 'svelte'; | |
const dispatch = createEventDispatcher(); | |
const i18n = getContext('i18n'); | |
export let admin = false; | |
export let params = { | |
// Advanced | |
stream_response: null, // Set stream responses for this model individually | |
seed: null, | |
stop: null, | |
temperature: null, | |
frequency_penalty: null, | |
repeat_last_n: null, | |
mirostat: null, | |
mirostat_eta: null, | |
mirostat_tau: null, | |
top_k: null, | |
top_p: null, | |
min_p: null, | |
tfs_z: null, | |
num_ctx: null, | |
num_batch: null, | |
num_keep: null, | |
max_tokens: null, | |
use_mmap: null, | |
use_mlock: null, | |
num_thread: null, | |
num_gpu: null, | |
template: null | |
}; | |
let customFieldName = ''; | |
let customFieldValue = ''; | |
$: if (params) { | |
dispatch('change', params); | |
} | |
</script> | |
<div class=" space-y-1 text-xs pb-safe-bottom"> | |
<div> | |
<Tooltip | |
content={$i18n.t( | |
'When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class=" py-0.5 flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Stream Chat Response')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition" | |
on:click={() => { | |
params.stream_response = | |
(params?.stream_response ?? null) === null | |
? true | |
: params.stream_response | |
? false | |
: null; | |
}} | |
type="button" | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('On')}</span> | |
{:else if params.stream_response === false} | |
<span class="ml-2 self-center">{$i18n.t('Off')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Seed')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.seed = (params?.seed ?? null) === null ? 0 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center"> {$i18n.t('Default')} </span> | |
{:else} | |
<span class="ml-2 self-center"> {$i18n.t('Custom')} </span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none" | |
type="number" | |
placeholder={$i18n.t('Enter Seed')} | |
bind:value={params.seed} | |
autocomplete="off" | |
min="0" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Stop Sequence')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.stop = (params?.stop ?? null) === null ? '' : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center"> {$i18n.t('Default')} </span> | |
{:else} | |
<span class="ml-2 self-center"> {$i18n.t('Custom')} </span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none" | |
type="text" | |
placeholder={$i18n.t('Enter stop sequence')} | |
bind:value={params.stop} | |
autocomplete="off" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Temperature')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.temperature = (params?.temperature ?? null) === null ? 0.8 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center"> {$i18n.t('Default')} </span> | |
{:else} | |
<span class="ml-2 self-center"> {$i18n.t('Custom')} </span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="1" | |
step="0.05" | |
bind:value={params.temperature} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.temperature} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="1" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Mirostat')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.mirostat = (params?.mirostat ?? null) === null ? 0 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="2" | |
step="1" | |
bind:value={params.mirostat} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.mirostat} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="2" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Mirostat Eta')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.mirostat_eta = (params?.mirostat_eta ?? null) === null ? 0.1 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="1" | |
step="0.05" | |
bind:value={params.mirostat_eta} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.mirostat_eta} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="1" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Mirostat Tau')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.mirostat_tau = (params?.mirostat_tau ?? null) === null ? 5.0 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="10" | |
step="0.5" | |
bind:value={params.mirostat_tau} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.mirostat_tau} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="10" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Top K')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.top_k = (params?.top_k ?? null) === null ? 40 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="100" | |
step="0.5" | |
bind:value={params.top_k} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.top_k} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="100" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Top P')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.top_p = (params?.top_p ?? null) === null ? 0.9 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="1" | |
step="0.05" | |
bind:value={params.top_p} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.top_p} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="1" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Min P')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.min_p = (params?.min_p ?? null) === null ? 0.0 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="1" | |
step="0.05" | |
bind:value={params.min_p} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.min_p} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="1" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Frequency Penalty')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.frequency_penalty = (params?.frequency_penalty ?? null) === null ? 1.1 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="2" | |
step="0.05" | |
bind:value={params.frequency_penalty} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.frequency_penalty} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="2" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Repeat Last N')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.repeat_last_n = (params?.repeat_last_n ?? null) === null ? 64 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="-1" | |
max="128" | |
step="1" | |
bind:value={params.repeat_last_n} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.repeat_last_n} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="-1" | |
max="128" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Tfs Z')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.tfs_z = (params?.tfs_z ?? null) === null ? 1 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="2" | |
step="0.05" | |
bind:value={params.tfs_z} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.tfs_z} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="2" | |
step="any" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Sets the size of the context window used to generate the next token. (Default: 2048)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Context Length')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.num_ctx = (params?.num_ctx ?? null) === null ? 2048 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="-1" | |
max="10240000" | |
step="1" | |
bind:value={params.num_ctx} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div class=""> | |
<input | |
bind:value={params.num_ctx} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="-1" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Batch Size (num_batch)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.num_batch = (params?.num_batch ?? null) === null ? 512 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="256" | |
max="8192" | |
step="256" | |
bind:value={params.num_batch} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.num_batch} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="256" | |
step="256" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Tokens To Keep On Context Refresh (num_keep)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.num_keep = (params?.num_keep ?? null) === null ? 24 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="-1" | |
max="10240000" | |
step="1" | |
bind:value={params.num_keep} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div class=""> | |
<input | |
bind:value={params.num_keep} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="-1" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('Max Tokens (num_predict)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.max_tokens = (params?.max_tokens ?? null) === null ? 128 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="-2" | |
max="131072" | |
step="1" | |
bind:value={params.max_tokens} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div> | |
<input | |
bind:value={params.max_tokens} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="-2" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
{ | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('use_mmap (Ollama)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.use_mmap = (params?.use_mmap ?? null) === null ? true : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex justify-between items-center mt-1"> | |
<div class="text-xs text-gray-500"> | |
{params.use_mmap ? 'Enabled' : 'Disabled'} | |
</div> | |
<div class=" pr-2"> | |
<Switch bind:state={params.use_mmap} /> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access." | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('use_mlock (Ollama)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.use_mlock = (params?.use_mlock ?? null) === null ? true : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex justify-between items-center mt-1"> | |
<div class="text-xs text-gray-500"> | |
{params.use_mlock ? 'Enabled' : 'Disabled'} | |
</div> | |
<div class=" pr-2"> | |
<Switch bind:state={params.use_mlock} /> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('num_thread (Ollama)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.num_thread = (params?.num_thread ?? null) === null ? 2 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="1" | |
max="256" | |
step="1" | |
bind:value={params.num_thread} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div class=""> | |
<input | |
bind:value={params.num_thread} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="1" | |
max="256" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<div class=" py-0.5 w-full justify-between"> | |
<Tooltip | |
content={$i18n.t( | |
'Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.' | |
)} | |
placement="top-start" | |
className="inline-tooltip" | |
> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium"> | |
{$i18n.t('num_gpu (Ollama)')} | |
</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.num_gpu = (params?.num_gpu ?? null) === null ? 0 : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
</Tooltip> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<input | |
id="steps-range" | |
type="range" | |
min="0" | |
max="256" | |
step="1" | |
bind:value={params.num_gpu} | |
class="w-full h-2 rounded-lg appearance-none cursor-pointer dark:bg-gray-700" | |
/> | |
</div> | |
<div class=""> | |
<input | |
bind:value={params.num_gpu} | |
type="number" | |
class=" bg-transparent text-center w-14" | |
min="0" | |
max="256" | |
step="1" | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> | |
<!-- <div class=" py-0.5 w-full justify-between"> | |
<div class="flex w-full justify-between"> | |
<div class=" self-center text-xs font-medium">{$i18n.t('Template')}</div> | |
<button | |
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none" | |
type="button" | |
on:click={() => { | |
params.template = (params?.template ?? null) === null ? '' : null; | |
}} | |
> | |
{ | |
<span class="ml-2 self-center">{$i18n.t('Default')}</span> | |
{:else} | |
<span class="ml-2 self-center">{$i18n.t('Custom')}</span> | |
{/if} | |
</button> | |
</div> | |
{ | |
<div class="flex mt-0.5 space-x-2"> | |
<div class=" flex-1"> | |
<textarea | |
class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg -mb-1" | |
placeholder={$i18n.t('Write your model template content here')} | |
rows="4" | |
bind:value={params.template} | |
/> | |
</div> | |
</div> | |
{/if} | |
</div> --> | |
{/if} | |
</div> | |