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"
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -260,6 +260,48 @@ We conducted head-to-head live coding tests against a HybridBase variant (same u
|
|
| 260 |
| Feature scope | 8 commands, knowledge tracker | 8 commands, simpler |
|
| 261 |
| Token usage | ~80k | Unknown (couldn't complete) |
|
| 262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
### Partial Benchmark Results
|
| 264 |
|
| 265 |
**Custom Quick Bench (50 problems: 20 coding, 15 reasoning, 15 math)**
|
|
|
|
| 260 |
| Feature scope | 8 commands, knowledge tracker | 8 commands, simpler |
|
| 261 |
| Token usage | ~80k | Unknown (couldn't complete) |
|
| 262 |
|
| 263 |
+
### One-Shot Project Tests (Live Coding)
|
| 264 |
+
|
| 265 |
+
Two complete projects were given as one-shot prompts to this model β no follow-up corrections, no multi-turn debugging. The model was expected to produce a fully working project from a single detailed prompt, including virtual environment setup, test scripts, and sample data.
|
| 266 |
+
|
| 267 |
+
> **Note:** The author believes the sampling parameters used during testing (temp=0.8, top_p=0.95, top_k=20) may not be fully optimal for this model. There is likely room for improved performance with further parameter tuning.
|
| 268 |
+
|
| 269 |
+
**Test 1: Study Flashcard Engine (one-shot, ~40-50k tokens generated)**
|
| 270 |
+
|
| 271 |
+
Prompt: Build a complete Python CLI tool with SM-2 spaced repetition, 7 commands, JSON API for agent integration, venv setup, and test suite.
|
| 272 |
+
|
| 273 |
+
| Aspect | Result |
|
| 274 |
+
|--------|--------|
|
| 275 |
+
| Runs without errors | β
Yes |
|
| 276 |
+
| All commands functional | β
7/7 |
|
| 277 |
+
| SM-2 algorithm | β
Correctly implemented |
|
| 278 |
+
| Project structure | β
Proper folder, setup.sh, test.sh, test_notes.txt |
|
| 279 |
+
| Card quality | β
Clean term-definition pairs, proper key term extraction |
|
| 280 |
+
| CSV export | β
Real CSV output using csv.writer |
|
| 281 |
+
| Deduplication | β
Explicit seen_fronts set prevents duplicates |
|
| 282 |
+
| Code style | Clean functional style, 788 lines |
|
| 283 |
+
| Bugs found | 1 minor (case sensitivity in some edge cases) |
|
| 284 |
+
|
| 285 |
+
**Test 2: Quiz Generator & Knowledge Tracker (one-shot, ~80k tokens generated)**
|
| 286 |
+
|
| 287 |
+
Prompt: Build a more complex Python CLI tool with 8 commands, 4 question types (MCQ, T/F, fill-in-blank, short answer), knowledge tracking with concept-level granularity, study suggestions, progress visualization, and scoring with partial credit.
|
| 288 |
+
|
| 289 |
+
| Aspect | Result |
|
| 290 |
+
|--------|--------|
|
| 291 |
+
| Runs without errors | β
Yes |
|
| 292 |
+
| All commands functional | β
6/8 (suggest command produces generic output with fresh data, weak-topics empty when no errors recorded β both technically correct but not useful as demos) |
|
| 293 |
+
| Question generation | β
4 types working (MCQ, T/F, fill, short answer) |
|
| 294 |
+
| Scoring pipeline | β
take β score β knowledge tracker update works end-to-end |
|
| 295 |
+
| Knowledge tracking | β
Concept-level accuracy tracking, trend detection |
|
| 296 |
+
| Project structure | β οΈ Files extracted without containing folder |
|
| 297 |
+
| Token usage | ~80k β the model autonomously managed file creation, venv setup, testing, and SSH transfer |
|
| 298 |
+
| Bugs found | 2-3 moderate: MCQ questions include markdown headers in question text, T/F generation has a for/else creating unintentional duplicates, suggest command pads with generic entries |
|
| 299 |
+
|
| 300 |
+
**Severity assessment of bugs:** All bugs found in Test 2 are **surface-level generation quality issues**, not architectural or logic errors. The scoring pipeline, knowledge tracker, and data persistence all work correctly. The MCQ header parsing and T/F duplicate issues would likely be fixed in a single follow-up prompt ("fix the question text including markdown headers" / "fix the T/F for/else logic"), requiring minimal effort. No bugs required architectural changes.
|
| 301 |
+
|
| 302 |
+
**For comparison β a rival variant (HybridBase) was given the same Quiz Generator prompt:**
|
| 303 |
+
The HybridBase variant **looped twice** during generation (requiring manual intervention: "you are looping, stop, evaluate then continue"), and the final output **crashed on launch** with a `NameError: name 'sentence' is not defined` β a variable scoping error where the model referenced a loop variable from a different function. After the looping and intervention, the model was unable to complete the task cleanly. This is a fundamental code generation failure that would require significant debugging, not a quick fix.
|
| 304 |
+
|
| 305 |
### Partial Benchmark Results
|
| 306 |
|
| 307 |
**Custom Quick Bench (50 problems: 20 coding, 15 reasoning, 15 math)**
|