Pull a model from Ollama.com
{ pullModelHandler(); }} disabled={modelTransferring} > {#if modelTransferring}
{:else}
{/if}
To access the available model names for downloading,
click here.
{#if Object.keys(modelDownloadStatus).length > 0} {#each Object.keys(modelDownloadStatus) as model}
{model}
{modelDownloadStatus[model].pullProgress ?? 0}%
{modelDownloadStatus[model].digest}
{/each} {/if}
Delete a model
{#if !deleteModelTag}
Select a model
{/if} {#each $models.filter((m) => m.size != null) as model}
{model.name + ' (' + (model.size / 1024 ** 3).toFixed(1) + ' GB)'}
{/each}
{ deleteModelHandler(); }} >
{ uploadModelHandler(); }} >
Upload a GGUF model
(Experimental)
{ if (modelUploadMode === 'file') { modelUploadMode = 'url'; } else { modelUploadMode = 'file'; } }} type="button" > {#if modelUploadMode === 'file'}
File Mode
{:else}
URL Mode
{/if}
{#if modelUploadMode === 'file'}
{ console.log(modelInputFile); }} accept=".gguf" required hidden />
{ document.getElementById('model-upload-input').click(); }} > {#if modelInputFile && modelInputFile.length > 0} {modelInputFile[0].name} {:else} Click here to select {/if}
{:else}
{/if}
{#if (modelUploadMode === 'file' && modelInputFile && modelInputFile.length > 0) || (modelUploadMode === 'url' && modelFileUrl !== '')}
{#if modelTransferring}
{:else}
{/if}
{/if}
{#if (modelUploadMode === 'file' && modelInputFile && modelInputFile.length > 0) || (modelUploadMode === 'url' && modelFileUrl !== '')}
Modelfile Content
{/if}
To access the GGUF models available for downloading,
click here.
{#if uploadProgress !== null}
Upload Progress
{uploadProgress ?? 0}%
{modelFileDigest}
{/if}