Instructions to use couldnt-find-good-name/Text-webui with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use couldnt-find-good-name/Text-webui with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="couldnt-find-good-name/Text-webui", filename="Wizard-Vicuna-13B-Uncensored.Q4_K_M.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use couldnt-find-good-name/Text-webui with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf couldnt-find-good-name/Text-webui:Q4_K_M # Run inference directly in the terminal: llama-cli -hf couldnt-find-good-name/Text-webui:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf couldnt-find-good-name/Text-webui:Q4_K_M # Run inference directly in the terminal: llama-cli -hf couldnt-find-good-name/Text-webui:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf couldnt-find-good-name/Text-webui:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf couldnt-find-good-name/Text-webui:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf couldnt-find-good-name/Text-webui:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf couldnt-find-good-name/Text-webui:Q4_K_M
Use Docker
docker model run hf.co/couldnt-find-good-name/Text-webui:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use couldnt-find-good-name/Text-webui with Ollama:
ollama run hf.co/couldnt-find-good-name/Text-webui:Q4_K_M
- Unsloth Studio
How to use couldnt-find-good-name/Text-webui with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for couldnt-find-good-name/Text-webui to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for couldnt-find-good-name/Text-webui to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for couldnt-find-good-name/Text-webui to start chatting
- Docker Model Runner
How to use couldnt-find-good-name/Text-webui with Docker Model Runner:
docker model run hf.co/couldnt-find-good-name/Text-webui:Q4_K_M
- Lemonade
How to use couldnt-find-good-name/Text-webui with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull couldnt-find-good-name/Text-webui:Q4_K_M
Run and chat with the model
lemonade run user.Text-webui-Q4_K_M
List all available models
lemonade list
Upload 2 files
Browse files- .gitattributes +2 -0
- Wizard-Vicuna-13B-Uncensored.Q4_K_M.gguf +3 -0
- code-290k-13b.Q4_K_M.gguf +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
stable-code-3b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
yarn-mistral-7b-128k.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
stable-code-3b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
yarn-mistral-7b-128k.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
code-290k-13b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Wizard-Vicuna-13B-Uncensored.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
Wizard-Vicuna-13B-Uncensored.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5ca843fd4a8c0a898b036f5c664a1fac366fb278f20880f1a750f38a950db73
|
| 3 |
+
size 7865956256
|
code-290k-13b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecd19148e504e4b009e7f3dfc8f4c758e6ba81db447bc7131e1c1f27c1141169
|
| 3 |
+
size 7865956352
|