Instructions to use legionarius/watt-tool-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use legionarius/watt-tool-8B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf legionarius/watt-tool-8B-GGUF:Q5_K_M # Run inference directly in the terminal: llama cli -hf legionarius/watt-tool-8B-GGUF:Q5_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf legionarius/watt-tool-8B-GGUF:Q5_K_M # Run inference directly in the terminal: llama cli -hf legionarius/watt-tool-8B-GGUF:Q5_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 legionarius/watt-tool-8B-GGUF:Q5_K_M # Run inference directly in the terminal: ./llama-cli -hf legionarius/watt-tool-8B-GGUF:Q5_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 legionarius/watt-tool-8B-GGUF:Q5_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf legionarius/watt-tool-8B-GGUF:Q5_K_M
Use Docker
docker model run hf.co/legionarius/watt-tool-8B-GGUF:Q5_K_M
- LM Studio
- Jan
- Ollama
How to use legionarius/watt-tool-8B-GGUF with Ollama:
ollama run hf.co/legionarius/watt-tool-8B-GGUF:Q5_K_M
- Unsloth Desktop
- Docker Model Runner
How to use legionarius/watt-tool-8B-GGUF with Docker Model Runner:
docker model run hf.co/legionarius/watt-tool-8B-GGUF:Q5_K_M
- Lemonade
How to use legionarius/watt-tool-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull legionarius/watt-tool-8B-GGUF:Q5_K_M
Run and chat with the model
lemonade run user.watt-tool-8B-GGUF-Q5_K_M
List all available models
lemonade list
- Atomic Chat
Update config.json
Browse files- config.json +2 -1
config.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
| 1 |
{
|
| 2 |
"model_type": "llama",
|
|
|
|
| 3 |
"quantization": {
|
| 4 |
"method": "gguf",
|
| 5 |
"bits": 4,
|
| 6 |
"format": "GGUF"
|
| 7 |
},
|
| 8 |
-
"default_model_file": "watt-tool-8B-GGUF-Q4_K_M.gguf",
|
| 9 |
"architectures": ["LlamaForCausalLM"],
|
| 10 |
"attention_bias": false,
|
| 11 |
"attention_dropout": 0.0,
|
|
|
|
| 1 |
{
|
| 2 |
"model_type": "llama",
|
| 3 |
+
"_name_or_path": "legionarius/watt-tool-8B-GGUF",
|
| 4 |
"quantization": {
|
| 5 |
"method": "gguf",
|
| 6 |
"bits": 4,
|
| 7 |
"format": "GGUF"
|
| 8 |
},
|
| 9 |
+
"default_model_file": "watt-tool-8B-GGUF-Q4_K_M.gguf",
|
| 10 |
"architectures": ["LlamaForCausalLM"],
|
| 11 |
"attention_bias": false,
|
| 12 |
"attention_dropout": 0.0,
|