Text Generation
Transformers
GGUF
English
qwen3
text-generation-inference
moderation
safety
filter
conversational
Instructions to use prithivMLmods/GA-Guard-AIO-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/GA-Guard-AIO-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/GA-Guard-AIO-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/GA-Guard-AIO-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/GA-Guard-AIO-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 prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/GA-Guard-AIO-GGUF: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 prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/GA-Guard-AIO-GGUF: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 prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/GA-Guard-AIO-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/GA-Guard-AIO-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": "prithivMLmods/GA-Guard-AIO-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/GA-Guard-AIO-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 "prithivMLmods/GA-Guard-AIO-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": "prithivMLmods/GA-Guard-AIO-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 "prithivMLmods/GA-Guard-AIO-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": "prithivMLmods/GA-Guard-AIO-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/GA-Guard-AIO-GGUF with Ollama:
ollama run hf.co/prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use prithivMLmods/GA-Guard-AIO-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/GA-Guard-AIO-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/GA-Guard-AIO-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.GA-Guard-AIO-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +13 -0
- GA_Guard_Core.BF16.gguf +3 -0
- GA_Guard_Core.F16.gguf +3 -0
- GA_Guard_Core.F32.gguf +3 -0
- GA_Guard_Core.Q2_K.gguf +3 -0
- GA_Guard_Core.Q3_K_L.gguf +3 -0
- GA_Guard_Core.Q3_K_M.gguf +3 -0
- GA_Guard_Core.Q3_K_S.gguf +3 -0
- GA_Guard_Core.Q4_K_M.gguf +3 -0
- GA_Guard_Core.Q4_K_S.gguf +3 -0
- GA_Guard_Core.Q5_K_M.gguf +3 -0
- GA_Guard_Core.Q5_K_S.gguf +3 -0
- GA_Guard_Core.Q6_K.gguf +3 -0
- GA_Guard_Core.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -52,3 +52,16 @@ GA_Guard_Lite-GGUF/GA_Guard_Lite.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 52 |
GA_Guard_Lite-GGUF/GA_Guard_Lite.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
GA_Guard_Lite-GGUF/GA_Guard_Lite.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
GA_Guard_Lite-GGUF/GA_Guard_Lite.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
GA_Guard_Lite-GGUF/GA_Guard_Lite.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
GA_Guard_Lite-GGUF/GA_Guard_Lite.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
GA_Guard_Lite-GGUF/GA_Guard_Lite.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
GA_Guard_Core.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
GA_Guard_Core.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
GA_Guard_Core.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
GA_Guard_Core.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
GA_Guard_Core.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
GA_Guard_Core.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
GA_Guard_Core.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
GA_Guard_Core.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
GA_Guard_Core.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
GA_Guard_Core.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
GA_Guard_Core.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
GA_Guard_Core.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
GA_Guard_Core.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
GA_Guard_Core.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d39b0699635b78167b93f6248da19dfe9e4a74adb90958d16bf0227c521a0d59
|
| 3 |
+
size 8049981568
|
GA_Guard_Core.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2d958976bd669cd948a4af3c34417db2599d0227b068e9543998ca62a7ce4c6
|
| 3 |
+
size 8049981568
|
GA_Guard_Core.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e01dc8d3567505b36755e5f702cca70d5e3b71b1d1a080d12fc1eb730ef4d421
|
| 3 |
+
size 16093230208
|
GA_Guard_Core.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff6087763f3886e3355058f34a8f9f6b3a8ba4a8f70a5795001bdaee1b3368b3
|
| 3 |
+
size 1668960032
|
GA_Guard_Core.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd0d332f2f79ee45f674f8c8a124526ecf4a12d26fec2b8272f4e101c6b68184
|
| 3 |
+
size 2239246112
|
GA_Guard_Core.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7998c890d1edf7985e1035c08913ff00bfc71d4f6274de86b4a17349f9de0075
|
| 3 |
+
size 2075078432
|
GA_Guard_Core.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbe9430a7e90bb1cfe413facd57e5615197bea25bf1de71dcd9d1cd2a6aed999
|
| 3 |
+
size 1886457632
|
GA_Guard_Core.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a74c61b5f0d8900605106e1f12bf1b1835495252e43e2f24fc459fbd3e2c914
|
| 3 |
+
size 2496741152
|
GA_Guard_Core.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a1e4b309ba4738914330f875e1ecc566b4a6d1f0e63e0f9fd93e02a538af2fc
|
| 3 |
+
size 2382769952
|
GA_Guard_Core.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e73900f943ce77b1cce4d10c2c96cb9e3b95a7137ea21c6ec460e7ed09596b31
|
| 3 |
+
size 2888974112
|
GA_Guard_Core.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db0b28083608ef571eb3047ce4eb7bdf6255a7bdc4075d28efecac714f9e9f39
|
| 3 |
+
size 2823171872
|
GA_Guard_Core.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f69034ab09394ec2221956141c5eb2d5d46a60595966e32cb7cf36f61b1fea5
|
| 3 |
+
size 3305721632
|
GA_Guard_Core.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97531fceeee2b28441e9d6740200f900d9f4b24ad02cbd37babc3ecfcc4720f0
|
| 3 |
+
size 4279708768
|