Instructions to use Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Inference
- Local Apps
- Unsloth Studio new
How to use Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled", max_seq_length=2048, )
Agent autonomy and Jinja template compatibility in production
The native "developer" role support and preserved thinking mode address critical friction points in agentic workflows. I have encountered similar Jinja template failures when integrating reasoning models with modern coding agents β the lack of developer role handling often requires brittle workarounds.
The 9+ minute autonomous run time is particularly interesting. In my experience deploying LangGraph agents on resource-constrained infrastructure (Oracle Free Tier), the most common failure mode isn't context length but rather agent stall β the model freezes mid-execution, especially when waiting for tool responses. If this model handles tool-calling latency gracefully without manual intervention, that's a significant operational advantage for local agent deployments.
One question: have you observed any degradation in reasoning quality when running at Q4_K_M vs BF16? The benchmark shows stable tool-calling at 27B, but I'm curious whether the structured thinking scaffold degrades under quantization pressure, or if the distilled reasoning format remains coherent.
Appreciate the detailed training pipeline documentation β the train_on_responses_only strategy masking instructions is a useful pattern I haven't seen explicitly documented elsewhere.