Views
No views yet
jica98/qwen3.5-9b-phase4-specialize-lora merged directly with Qwen/Qwen3.5-9B-Base in full FP16 precision, then quantized via llama.cpp K-Quants.
Specialized for Fullstack Software Engineering, Autonomous Agentic Tool Calling, and Complex Code Reasoning.write_file, replace_lines, run_terminal_command).| File Name | Quant Type | File Size | Recommended VRAM | Ideal Context Window | Best For |
|---|---|---|---|---|---|
qwen3.5-9B-super-coder.Q3_K_M.gguf | Q3_K_M | 4.62 GB | 6 GB - 8 GB | 16,000 - 24,000 tokens | 🏆 Recommended: Best balance of reasoning depth & memory efficiency. |
qwen3.5-9B-super-coder.Q3_K_S.gguf | Q3_K_S | 4.26 GB | 6 GB | 20,000 - 26,000 tokens | High context with low VRAM footprint. |
qwen3.5-9B-super-coder.Q2_K.gguf | Q2_K | 3.83 GB | 4 GB - 6 GB | 24,000 - 32,000 tokens | Ultra-lightweight execution on consumer GPUs. |
[!NOTE] Standard K-Quants (Q3_K_M,Q3_K_S,Q2_K) are used instead of legacy IQ quants to ensure 100% stability across Qwen 3.5's hybrid DeltaNet state-space layers.
khoin68/qwen3.5-9B-super-coder-Q3KM-GGUF.Q3_K_M) and click Download $\to$ Load.khoin68/qwen3.5-9B-super-coder-Q3KM-GGUF..gguf file and start the local server on port 1234 or 8888.llama.cpp CLI / Server1# Run local OpenAI-compatible inference server
2llama-server -m qwen3.5-9B-super-coder.Q3_K_M.gguf -c 24000 --port 8888 -ngl 991
2
3from llama_cpp import Llama
4llm = Llama(
5 model_path="qwen3.5-9B-super-coder.Q3_K_M.gguf",
6 n_ctx=24000,
7 n_gpu_layers=-1, # Offload all layers to GPU
8 verbose=False
9)
10response = llm.create_chat_completion(
11 messages=[
12 {"role": "system", "content": "You are an expert software engineer."},
13 {"role": "user", "content": "Write a clean TypeScript debounce utility with cancel support."}
14 ]
15)
16print(response["choices"][0]["message"]["content"])1
2
3<|im_start|>system
4You are an autonomous AI coding assistant.<|im_end|>
5<|im_start|>user
6{prompt}<|im_end|>
7<|im_start|>assistant