Instructions to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-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 tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
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 tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
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 tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
- SGLang
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with Ollama:
ollama run hf.co/tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-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 tensorblock/ChatFrame-Uncensored-Instruct-Small-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 tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
- Lemonade
How to use tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/ChatFrame-Uncensored-Instruct-Small-GGUF:Q2_K
Run and chat with the model
lemonade run user.ChatFrame-Uncensored-Instruct-Small-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Keep Q2_K/Q3_K_M gguf only
Browse files- ChatFrame-Uncensored-Instruct-Small-Q3_K_L.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q3_K_S.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q4_0.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q4_K_M.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q4_K_S.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q5_0.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q5_K_M.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q5_K_S.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q6_K.gguf +0 -3
- ChatFrame-Uncensored-Instruct-Small-Q8_0.gguf +0 -3
ChatFrame-Uncensored-Instruct-Small-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a25e1fe2719e9545f96b10aa3513b9bcf9ef181d004344bdfb6216acb2c8836d
|
| 3 |
-
size 4321956544
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1c3a6e05f9f68b7b5c59ebb1426b22e21a5c715964bbcaaa07eee71ad52c4c57
|
| 3 |
-
size 3664499392
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2f80ed6c336bf74db0a542af133e74bb6364d4f9ac7bfc139e0e32d2d6fbdbb9
|
| 3 |
-
size 4661211840
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2cd4e15f284bba2523d0dde85704be6073a6465c7e8877390503c88ec8d17e3d
|
| 3 |
-
size 4920734400
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f0c9465157cb37595f7f9f0db9a919aef84077c78e2afa768488ac2c28b6e512
|
| 3 |
-
size 4692669120
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:09ff9d5a798481e5359e88fb0de81fe6c1a8b15ca6ee24f16df75e3e79d8583f
|
| 3 |
-
size 5599294144
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c4713261f55c72a3080f67ff8a3311eb5a753bbe6a6728d3d62f2f7cb1dfd1ad
|
| 3 |
-
size 5732987584
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:37a3d6330dbe76565a857459e225ad90c82762251c336ee99095e40c6259d632
|
| 3 |
-
size 5599294144
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c911ced29661330d740aa391a4049c98632bb5ab159bf96810c255cf71b4e91f
|
| 3 |
-
size 6596006592
|
|
|
|
|
|
|
|
|
|
|
|
ChatFrame-Uncensored-Instruct-Small-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3df3a0dd1ba92f209005feedd9cb14d7a8fa3dac083addb503370a3a14a0ffce
|
| 3 |
-
size 8540771008
|
|
|
|
|
|
|
|
|
|
|
|