How to use from
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 "BucketP/Sentia-Qwen3.5-9B-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": "BucketP/Sentia-Qwen3.5-9B-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 "BucketP/Sentia-Qwen3.5-9B-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": "BucketP/Sentia-Qwen3.5-9B-GGUF",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Sentia-Qwen3.5-9B-GGUF

This repository contains the GGUF format models for the Sentia AI VTuber Project. Base Model: lukey03/Qwen3.5-9B-abliterated

Provided Files & VRAM Requirements

We provide both the full-precision (FP16) version for high-end GPUs and the quantized (Q4_K_M) version for edge deployment.

Filename Quant Method File Size Recommended VRAM Use Case
Sentia-9B-FP16.gguf FP16 (Unquantized) ~18.0 GB 24GB+ Highest precision. Recommended for server-side inference (e.g., RTX 3090/4090).
Sentia-Q4_K_M.gguf Q4_K_M ~5.3 GB 8GB - 16GB Excellent balance of speed and quality. Recommended for local Edge deployment (e.g., RX 9070 XT).

Usage with llama.cpp

For Edge Inference (Q4):

./llama-server -m Sentia-Q4_K_M.gguf -ngl 99 --port 8080 --chat-template chatml

For High-Precision Inference (FP16)

./llama-server -m Sentia-9B-FP16.gguf -ngl 99 --port 8080 --chat-template chatml
Downloads last month
10
GGUF
Model size
9B params
Architecture
qwen35
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for BucketP/Sentia-Qwen3.5-9B-GGUF

Finetuned
Qwen/Qwen3.5-9B
Quantized
(3)
this model