How to use from
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 sodeeplearning/pozdgpt:
# Run inference directly in the terminal:
llama cli -hf sodeeplearning/pozdgpt:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf sodeeplearning/pozdgpt:
# Run inference directly in the terminal:
llama cli -hf sodeeplearning/pozdgpt:
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 sodeeplearning/pozdgpt:
# Run inference directly in the terminal:
./llama-cli -hf sodeeplearning/pozdgpt:
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 sodeeplearning/pozdgpt:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf sodeeplearning/pozdgpt:
Use Docker
docker model run hf.co/sodeeplearning/pozdgpt:
Quick Links

PozdGPT

Peak of humanity technologies. New breath in neuroslop world.

PozdGPT

Usage

Via llama.cpp + GGUF

# !pip install llama-cpp-python
from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="sodeeplearning/pozdgpt",
    filename="PozdGPT-Q4_K_M.gguf", # Or Q6_K, Q8_0, f16
)

AWQ + vLLM

To launch 4bit AWQ version you need to download this folder and launch your vLLM server:

# !pip install vllm

vllm serve ./PozdGPT-awq-4bit \
  --served-model-name pozdgpt \
  --quantization compressed-tensors \
  --max-model-len 8192 \
  --gpu-memory-utilization 0.88 \
  --max-num-seqs 6 \
  --kv-cache-dtype fp8 \
  --enable-prefix-caching \
  --api-key key \
  --port 8148

Test via telegram bot

You can test this bot in official telegram bot

Contacts

Downloads last month
142
GGUF
Model size
8B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

4-bit

6-bit

8-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support