From b05ad1fda1e6db019b2a986674f926c3d13b3187 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 24 Dec 2023 01:02:31 -0800 Subject: [PATCH] chore: doc update --- README.md | 4 +++- src/lib/components/chat/SettingsModal.svelte | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93cafc00..ad29e7b1 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ChatGPT-Style Web Interface for Ollama 🦙 -**Disclaimer:** *ollama-webui is a community-driven project and is not affiliated with the Ollama team in any way. This initiative is independent, and any inquiries or feedback should be directed to [our community on Discord](https://discord.gg/5rJgQTnV4s). We kindly request users to refrain from contacting or harassing the Ollama team regarding this project.* +**Disclaimer:** _ollama-webui is a community-driven project and is not affiliated with the Ollama team in any way. This initiative is independent, and any inquiries or feedback should be directed to [our community on Discord](https://discord.gg/5rJgQTnV4s). We kindly request users to refrain from contacting or harassing the Ollama team regarding this project._ ![Ollama Web UI Demo](./demo.gif) @@ -35,6 +35,8 @@ Also check our sibling project, [OllamaHub](https://ollamahub.com/), where you c - 📥🗑️ **Download/Delete Models**: Easily download or remove models directly from the web UI. +- ⬆️ **GGUF File Model Creation**: Upload or download GGUF file from HuggingFace seamlessly within the web UI for convenient Ollama GGUF file model creation. + - 🤖 **Multiple Model Support**: Seamlessly switch between different chat models for diverse interactions. - 🔄 **Multi-Modal Support**: Seamlessly engage with models that support multimodal interactions, including images (e.g., LLava). diff --git a/src/lib/components/chat/SettingsModal.svelte b/src/lib/components/chat/SettingsModal.svelte index 493be1a9..4baf6c91 100644 --- a/src/lib/components/chat/SettingsModal.svelte +++ b/src/lib/components/chat/SettingsModal.svelte @@ -277,6 +277,7 @@ const uploadModelHandler = async () => { modelTransferring = true; uploadProgress = 0; + let uploaded = false; let fileResponse = null; let name = ''; @@ -1221,7 +1222,7 @@