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 "prithivMLmods/Vortex-9B-CodeCore-Merge-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/Vortex-9B-CodeCore-Merge-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/Vortex-9B-CodeCore-Merge-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/Vortex-9B-CodeCore-Merge-GGUF",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Vortex-9B-CodeCore-Merge-GGUF

Vortex-9B-CodeCore-Merge is a merged 9B-parameter coding and reasoning model designed for long-horizon coding tasks, agentic coding, and agentic reasoning. It is built by merging Qwen3.5-9B as the base model with NeoHorse-1-9B, Qwopus3.5-9B-Coder, and Ornith-1.5-9B, combining their capabilities for code generation, multi-step problem solving, instruction following, and autonomous coding workflows. The model is intended for complex software-engineering tasks that require sustained reasoning across multiple steps, code understanding, modification, debugging, and tool-oriented agentic workflows. This model is experimental and may generate artifacts.

Model Files

File Name Quant Type File Size File Link
Vortex-9B-CodeCore-Merge.BF16.gguf BF16 17.9 GB Download
Vortex-9B-CodeCore-Merge.Q3_K_L.gguf Q3_K_L 4.93 GB Download
Vortex-9B-CodeCore-Merge.Q3_K_M.gguf Q3_K_M 4.62 GB Download
Vortex-9B-CodeCore-Merge.Q4_K_M.gguf Q4_K_M 5.63 GB Download
Vortex-9B-CodeCore-Merge.Q4_K_S.gguf Q4_K_S 5.35 GB Download
Vortex-9B-CodeCore-Merge.Q5_K_M.gguf Q5_K_M 6.47 GB Download
Vortex-9B-CodeCore-Merge.Q5_K_S.gguf Q5_K_S 6.31 GB Download

llama.cpp

LLM inference in C/C++ — https://github.com/ggml-org/llama.cpp

Downloads last month
440
GGUF
Model size
9B params
Architecture
qwen35
Hardware compatibility
Log In to add your hardware

3-bit

4-bit

5-bit

16-bit

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

Model tree for prithivMLmods/Vortex-9B-CodeCore-Merge-GGUF

Quantized
(3)
this model

Collections including prithivMLmods/Vortex-9B-CodeCore-Merge-GGUF