Text Generation
Safetensors
mistral
awq
4-bit precision
quantized
roleplay
creative-writing
conversational
Instructions to use tacodevs/Cydonia-24B-v4.3-AWQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- vLLM
How to use tacodevs/Cydonia-24B-v4.3-AWQ with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tacodevs/Cydonia-24B-v4.3-AWQ" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tacodevs/Cydonia-24B-v4.3-AWQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tacodevs/Cydonia-24B-v4.3-AWQ
- SGLang
How to use tacodevs/Cydonia-24B-v4.3-AWQ 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 "tacodevs/Cydonia-24B-v4.3-AWQ" \ --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": "tacodevs/Cydonia-24B-v4.3-AWQ", "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 "tacodevs/Cydonia-24B-v4.3-AWQ" \ --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": "tacodevs/Cydonia-24B-v4.3-AWQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use tacodevs/Cydonia-24B-v4.3-AWQ with Docker Model Runner:
docker model run hf.co/tacodevs/Cydonia-24B-v4.3-AWQ
Configuration Parsing Warning:In config.json: "quantization_config.modules_to_not_convert" must be an array
Cydonia-24B-v4.3-AWQ
AWQ 4-bit quantization of TheDrummer/Cydonia-24B-v4.3.
Quantization Details
- Method: AWQ (Activation-aware Weight Quantization)
- Bits: 4-bit
- Group size: 128
- Version: GEMM
- Zero point: True
- Model size: ~14 GB (vs ~48 GB FP16)
Usage
Works with vLLM, Transformers, and other AWQ-compatible inference engines.
# vLLM
vllm serve Irvollo/Cydonia-24B-v4.3-AWQ --quantization awq_marlin --dtype float16
# Transformers
from awq import AutoAWQForCausalLM
model = AutoAWQForCausalLM.from_quantized("Irvollo/Cydonia-24B-v4.3-AWQ")
Original Model
Cydonia v4.3 by TheDrummer — a Mistral Small 3.1 24B fine-tune optimized for roleplay and creative writing.
Hardware Requirements
- Minimum: 16 GB VRAM (RTX 4090, A100, etc.)
- Recommended: 24 GB VRAM for comfortable KV cache headroom
- Downloads last month
- 1,766
Model tree for tacodevs/Cydonia-24B-v4.3-AWQ
Base model
mistralai/Mistral-Small-3.1-24B-Base-2503 Finetuned
TheDrummer/Cydonia-24B-v4.3