Text Generation
Transformers
GGUF
English
HelpingAI
Emotionally-Intelligent
EQ-focused
Conversational
SLM
TensorBlock
GGUF
conversational
Instructions to use tensorblock/HelpingAI-3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/HelpingAI-3-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/HelpingAI-3-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/HelpingAI-3-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/HelpingAI-3-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/HelpingAI-3-GGUF", filename="HelpingAI-3-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/HelpingAI-3-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/HelpingAI-3-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/HelpingAI-3-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/HelpingAI-3-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/HelpingAI-3-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/HelpingAI-3-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/HelpingAI-3-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/HelpingAI-3-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/HelpingAI-3-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/HelpingAI-3-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/HelpingAI-3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/HelpingAI-3-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/HelpingAI-3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/HelpingAI-3-GGUF:Q2_K
- SGLang
How to use tensorblock/HelpingAI-3-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/HelpingAI-3-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/HelpingAI-3-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/HelpingAI-3-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/HelpingAI-3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/HelpingAI-3-GGUF with Ollama:
ollama run hf.co/tensorblock/HelpingAI-3-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/HelpingAI-3-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/HelpingAI-3-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/HelpingAI-3-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/HelpingAI-3-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/HelpingAI-3-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/HelpingAI-3-GGUF:Q2_K
- Lemonade
How to use tensorblock/HelpingAI-3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/HelpingAI-3-GGUF:Q2_K
Run and chat with the model
lemonade run user.HelpingAI-3-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- HelpingAI-3-Q3_K_L.gguf +0 -3
- HelpingAI-3-Q3_K_S.gguf +0 -3
- HelpingAI-3-Q4_0.gguf +0 -3
- HelpingAI-3-Q4_K_M.gguf +0 -3
- HelpingAI-3-Q4_K_S.gguf +0 -3
- HelpingAI-3-Q5_0.gguf +0 -3
- HelpingAI-3-Q5_K_M.gguf +0 -3
- HelpingAI-3-Q5_K_S.gguf +0 -3
- HelpingAI-3-Q6_K.gguf +0 -3
- HelpingAI-3-Q8_0.gguf +0 -3
HelpingAI-3-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6a0711735c629e27c91be47bf9ac99638ad8d6a30769a1b25b748b7315e924e1
|
| 3 |
-
size 5450805056
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f79a3c78dcf1d6fdd347915039f9736ef3a4ec035ce1525a5f2f3622d5bf4783
|
| 3 |
-
size 4591136576
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:02545d332a5da85487be6a3d67a2b34e7641a80035625d89e235c4552043bf3c
|
| 3 |
-
size 5906345792
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3a36c2daa4746a723baa65270c543a0fa418b2f45b305ce6a5f29139b2dcecd5
|
| 3 |
-
size 6287519552
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:30f0b79567a29bf8e5106bcfd082b61515e8f8892d41f5e81beb59dc311c7426
|
| 3 |
-
size 5952155456
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b700dcc496ea3517f8ea516ff35f5e6d86c13ac47c00f2004f0519567d1f2167
|
| 3 |
-
size 7144189760
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3ee05412b9ee2e104115911c9351a79104c90e2c9f1d7ae0de58593e0092af02
|
| 3 |
-
size 7340552000
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a2daf05d284c0c755427f769d47484d78866abaf0a241b8b8e54bfd46a699a4b
|
| 3 |
-
size 7144189760
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:766e0a09f0413c952f17ab1a543d65fc02e515bae140fa76de78a5a43594a21b
|
| 3 |
-
size 8459398976
|
|
|
|
|
|
|
|
|
|
|
|
HelpingAI-3-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:797efb7f753f10bc41f705eaf09a67b5d1e935fc6c2c8002f04c89924d9c6fe5
|
| 3 |
-
size 10955239232
|
|
|
|
|
|
|
|
|
|
|
|