Instructions to use tomngdev/AutoShell-0.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 tomngdev/AutoShell-0.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 tomngdev/AutoShell-0.8B-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf tomngdev/AutoShell-0.8B-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tomngdev/AutoShell-0.8B-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf tomngdev/AutoShell-0.8B-GGUF:BF16
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 tomngdev/AutoShell-0.8B-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf tomngdev/AutoShell-0.8B-GGUF:BF16
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 tomngdev/AutoShell-0.8B-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf tomngdev/AutoShell-0.8B-GGUF:BF16
Use Docker
docker model run hf.co/tomngdev/AutoShell-0.8B-GGUF:BF16
- LM Studio
- Jan
- Ollama
How to use tomngdev/AutoShell-0.8B-GGUF with Ollama:
ollama run hf.co/tomngdev/AutoShell-0.8B-GGUF:BF16
- Unsloth Studio
How to use tomngdev/AutoShell-0.8B-GGUF 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 tomngdev/AutoShell-0.8B-GGUF 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 tomngdev/AutoShell-0.8B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tomngdev/AutoShell-0.8B-GGUF to start chatting
- Docker Model Runner
How to use tomngdev/AutoShell-0.8B-GGUF with Docker Model Runner:
docker model run hf.co/tomngdev/AutoShell-0.8B-GGUF:BF16
- Lemonade
How to use tomngdev/AutoShell-0.8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tomngdev/AutoShell-0.8B-GGUF:BF16
Run and chat with the model
lemonade run user.AutoShell-0.8B-GGUF-BF16
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,7 +8,6 @@ language:
|
|
| 8 |
base_model:
|
| 9 |
- tomngdev/AutoShell-0.8B
|
| 10 |
pipeline_tag: text-classification
|
| 11 |
-
library_name: transformers
|
| 12 |
tags:
|
| 13 |
- unsloth
|
| 14 |
- classifier
|
|
@@ -31,9 +30,7 @@ Using [Qwen/Qwen3.5-0.8B-Base](Qwen/Qwen3.5-0.8B-Base) as base checkpoint and sy
|
|
| 31 |
|
| 32 |
#### Installation
|
| 33 |
|
| 34 |
-
|
| 35 |
-
pip install vllm --upgrade
|
| 36 |
-
```
|
| 37 |
|
| 38 |
#### Serve
|
| 39 |
|
|
@@ -136,4 +133,4 @@ messages = [
|
|
| 136 |
|
| 137 |
score, flagged = safe_score(messages)
|
| 138 |
print(f"safe score = {score:.3f} -> {SAFE if flagged else unsafe}")
|
| 139 |
-
```
|
|
|
|
| 8 |
base_model:
|
| 9 |
- tomngdev/AutoShell-0.8B
|
| 10 |
pipeline_tag: text-classification
|
|
|
|
| 11 |
tags:
|
| 12 |
- unsloth
|
| 13 |
- classifier
|
|
|
|
| 30 |
|
| 31 |
#### Installation
|
| 32 |
|
| 33 |
+
See [llama.cpp](https://llama.app) guide for your environment.
|
|
|
|
|
|
|
| 34 |
|
| 35 |
#### Serve
|
| 36 |
|
|
|
|
| 133 |
|
| 134 |
score, flagged = safe_score(messages)
|
| 135 |
print(f"safe score = {score:.3f} -> {SAFE if flagged else unsafe}")
|
| 136 |
+
```
|