fix: restore status toast

This commit is contained in:
Timothy J. Baek 2024-01-06 13:23:08 -08:00
parent 3853261b40
commit 84f0cb41bb

View File

@ -295,11 +295,16 @@
digest: data.digest digest: data.digest
}; };
} }
} else {
toast.success(data.status);
} }
} }
} }
} catch (error) { } catch (error) {
console.log(error); console.log(error);
if (typeof error !== 'string') {
error = error.message;
}
opts.callback({ success: false, error, modelName: opts.modelName }); opts.callback({ success: false, error, modelName: opts.modelName });
} }
} }
@ -330,12 +335,11 @@
if (!data.success) { if (!data.success) {
toast.error(data.error); toast.error(data.error);
return; } else {
}
toast.success(`Model ${modelName} was successfully downloaded`); toast.success(`Model ${modelName} was successfully downloaded`);
models.set(await getModels()); models.set(await getModels());
} }
}
); );
modelTag = ''; modelTag = '';
@ -1155,18 +1159,18 @@
</button> </button>
</div> </div>
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500"> <div class="mt-2 mb-1 text-xs text-gray-400 dark:text-gray-500">
To access the available model names for downloading, <a To access the available model names for downloading, <a
class=" text-gray-500 dark:text-gray-300 font-medium" class=" text-gray-500 dark:text-gray-300 font-medium"
href="https://ollama.ai/library" href="https://ollama.ai/library"
target="_blank">click here.</a target="_blank">click here.</a
> >
</div> </div>
</div>
{#if Object.keys(modelDownloadStatus).length > 0} {#if Object.keys(modelDownloadStatus).length > 0}
{#each Object.entries(modelDownloadStatus) as [modelName, payload]} {#each Object.entries(modelDownloadStatus) as [modelName, payload]}
<div class="flex flex-col"> <div class="flex flex-col">
<div class="font-medium mb-0.5">{modelName}</div> <div class="font-medium mb-1">{modelName}</div>
<div class=""> <div class="">
<div <div
class="dark:bg-gray-600 bg-gray-500 text-xs font-medium text-gray-100 text-center p-0.5 leading-none rounded-full" class="dark:bg-gray-600 bg-gray-500 text-xs font-medium text-gray-100 text-center p-0.5 leading-none rounded-full"
@ -1181,6 +1185,8 @@
</div> </div>
{/each} {/each}
{/if} {/if}
</div>
<hr class=" dark:border-gray-700" /> <hr class=" dark:border-gray-700" />
<div> <div>