Instructions to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with 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 jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
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 jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
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 jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Use Docker
docker model run hf.co/jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
- LM Studio
- Jan
- vLLM
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
- Ollama
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with Ollama:
ollama run hf.co/jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
- Unsloth Desktop
- Pi
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with Docker Model Runner:
docker model run hf.co/jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
- Lemonade
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Run and chat with the model
lemonade run user.Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF-BF16
List all available models
lemonade list
- Hermes Agent
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "jackasda211233/Qwen3.5-27B-Uncensored-RYS-Reasoner-GGUF:BF16" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Trim repeated README sections and keep top-level summary
Browse files
README.md
CHANGED
|
@@ -5,7 +5,6 @@ base_model:
|
|
| 5 |
- Qwen/Qwen3.5-27B
|
| 6 |
- dnhkng/RYS-Qwen3.5-27B-FP8-XL
|
| 7 |
tags:
|
| 8 |
-
- qwen3_5
|
| 9 |
- qwen3.5
|
| 10 |
- uncensored
|
| 11 |
- RYS
|
|
@@ -56,16 +55,20 @@ This model is designed as a **coding agent model** for use with Claude Code, Ope
|
|
| 56 |
>
|
| 57 |
> **The author is not responsible for how this model is used.** Any actions taken are solely the responsibility of the user. Use in accordance with applicable laws and ethical standards.
|
| 58 |
|
| 59 |
-
##
|
| 60 |
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
|
| 70 |
## Available Files
|
| 71 |
|
|
@@ -215,14 +218,6 @@ llama-server \
|
|
| 215 |
--min-p 0.0 --repeat-penalty 1.0
|
| 216 |
```
|
| 217 |
|
| 218 |
-
**Current params:**
|
| 219 |
-
- temp `0.7`
|
| 220 |
-
- top-p `0.95`
|
| 221 |
-
- top-k `20`
|
| 222 |
-
- min-p `0.0`
|
| 223 |
-
- repeat-penalty `1.0`
|
| 224 |
-
- cache-ram `30720`
|
| 225 |
-
|
| 226 |
For contexts above ~160k, consider switching the KV cache to F32:
|
| 227 |
- `--cache-type-k f32 --cache-type-v f32`
|
| 228 |
|
|
@@ -254,20 +249,6 @@ Layers 42β71: HauhauCS Uncensored weights (30 layers)
|
|
| 254 |
- **[dnhkng/RYS](https://github.com/dnhkng/RYS)** β Method & research ([Blog](https://dnhkng.github.io/posts/rys-ii/))
|
| 255 |
- **[ikawrakow/ik_llama.cpp](https://github.com/ikawrakow/ik_llama.cpp)** β Quantization tooling
|
| 256 |
|
| 257 |
-
## Live Test: AI Radar Project (One-Shot)
|
| 258 |
-
|
| 259 |
-
The model autonomously built a complete AI/ML news aggregator:
|
| 260 |
-
- **26KB FastAPI backend** with 4 live API integrations (GitHub, Reddit, HuggingFace, ArXiv)
|
| 261 |
-
- **25KB dark-theme SPA frontend** (881 lines, search, filters, cards, bookmarks)
|
| 262 |
-
- **SQLite database** with 175 items persisted from live API fetches
|
| 263 |
-
- **Setup & test scripts** β venv, deps, 9 endpoint tests
|
| 264 |
-
- **Self-corrected** 3 tool format errors autonomously
|
| 265 |
-
- **Zero loops** across ~70k token generation at 256k context
|
| 266 |
-
|
| 267 |
-
Tested via [claw-code](https://github.com/ultraworkers/claw-code) agent framework (required patching `reasoning_content` support for OpenAI-compatible streaming β see our fork).
|
| 268 |
-
|
| 269 |
-
Testing environment: [OpenCode](https://github.com/opencode-ai/opencode) on Arch Linux with root access. Primary runtime testing used ik-llama.cpp with the build info below and the current recommended parameters from this README.
|
| 270 |
-
|
| 271 |
## Tested Runtimes / Builds
|
| 272 |
|
| 273 |
Primary validation for this release used **ik-llama.cpp**, mainly because its **graph split** is a major performance boost on multi-GPU systems compared to standard layer split.
|
|
@@ -299,27 +280,6 @@ The new `RYS-Qwen3.5-27B-Uncensored-Splice-IQ4_NL-llama.cpp-compatible.gguf` was
|
|
| 299 |
| CUDA | ON |
|
| 300 |
| Flash Attention | ON |
|
| 301 |
|
| 302 |
-
Quantization command used:
|
| 303 |
-
|
| 304 |
-
```bash
|
| 305 |
-
llama-quantize \
|
| 306 |
-
--imatrix /home/benbi/Desktop/RYS-uncensored-experiment/splice_custom.imatrix \
|
| 307 |
-
/home/benbi/qwen35_uncensored_rys/Qwen3.5-27B-Uncensored-RYS-Splice-BF16.gguf \
|
| 308 |
-
/home/benbi/qwen35_uncensored_rys/Qwen3.5-27B-Uncensored-RYS-Splice-IQ4_NL-mainline.gguf \
|
| 309 |
-
IQ4_NL
|
| 310 |
-
```
|
| 311 |
-
|
| 312 |
-
Compatibility validation used:
|
| 313 |
-
|
| 314 |
-
- `-c 262144`
|
| 315 |
-
- `--cache-type-k f32 --cache-type-v f32`
|
| 316 |
-
|
| 317 |
-
Verification prompts returned correct final outputs:
|
| 318 |
-
|
| 319 |
-
- `0.05`
|
| 320 |
-
- `5050`
|
| 321 |
-
- `RYS 3-2-2 FP32 verification passed.`
|
| 322 |
-
|
| 323 |
In either runtime, **use the latest available compile/build when testing**.
|
| 324 |
|
| 325 |
## Vision Compatibility
|
|
|
|
| 5 |
- Qwen/Qwen3.5-27B
|
| 6 |
- dnhkng/RYS-Qwen3.5-27B-FP8-XL
|
| 7 |
tags:
|
|
|
|
| 8 |
- qwen3.5
|
| 9 |
- uncensored
|
| 10 |
- RYS
|
|
|
|
| 55 |
>
|
| 56 |
> **The author is not responsible for how this model is used.** Any actions taken are solely the responsibility of the user. Use in accordance with applicable laws and ethical standards.
|
| 57 |
|
| 58 |
+
## Representative Live Test
|
| 59 |
|
| 60 |
+
The model autonomously built a complete AI/ML news aggregator:
|
| 61 |
+
|
| 62 |
+
- **26KB FastAPI backend** with 4 live API integrations (GitHub, Reddit, HuggingFace, ArXiv)
|
| 63 |
+
- **25KB dark-theme SPA frontend** (881 lines, search, filters, cards, bookmarks)
|
| 64 |
+
- **SQLite database** with 175 items persisted from live API fetches
|
| 65 |
+
- **Setup & test scripts** β venv, deps, 9 endpoint tests
|
| 66 |
+
- **Self-corrected** 3 tool format errors autonomously
|
| 67 |
+
- **Zero loops** across ~70k token generation at 256k context
|
| 68 |
+
|
| 69 |
+
Tested via [claw-code](https://github.com/ultraworkers/claw-code) agent framework (required patching `reasoning_content` support for OpenAI-compatible streaming β see our fork).
|
| 70 |
+
|
| 71 |
+
Testing environment: [OpenCode](https://github.com/opencode-ai/opencode) on Arch Linux with root access. Primary runtime testing used ik-llama.cpp with the build info below and the current recommended parameters from this README.
|
| 72 |
|
| 73 |
## Available Files
|
| 74 |
|
|
|
|
| 218 |
--min-p 0.0 --repeat-penalty 1.0
|
| 219 |
```
|
| 220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 221 |
For contexts above ~160k, consider switching the KV cache to F32:
|
| 222 |
- `--cache-type-k f32 --cache-type-v f32`
|
| 223 |
|
|
|
|
| 249 |
- **[dnhkng/RYS](https://github.com/dnhkng/RYS)** β Method & research ([Blog](https://dnhkng.github.io/posts/rys-ii/))
|
| 250 |
- **[ikawrakow/ik_llama.cpp](https://github.com/ikawrakow/ik_llama.cpp)** β Quantization tooling
|
| 251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 252 |
## Tested Runtimes / Builds
|
| 253 |
|
| 254 |
Primary validation for this release used **ik-llama.cpp**, mainly because its **graph split** is a major performance boost on multi-GPU systems compared to standard layer split.
|
|
|
|
| 280 |
| CUDA | ON |
|
| 281 |
| Flash Attention | ON |
|
| 282 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 283 |
In either runtime, **use the latest available compile/build when testing**.
|
| 284 |
|
| 285 |
## Vision Compatibility
|