Instructions to use osmapi/osmFableQwopus-3.6-27B-Uncensored with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use osmapi/osmFableQwopus-3.6-27B-Uncensored with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="osmapi/osmFableQwopus-3.6-27B-Uncensored") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("osmapi/osmFableQwopus-3.6-27B-Uncensored") model = AutoModelForMultimodalLM.from_pretrained("osmapi/osmFableQwopus-3.6-27B-Uncensored") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use osmapi/osmFableQwopus-3.6-27B-Uncensored with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "osmapi/osmFableQwopus-3.6-27B-Uncensored" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "osmapi/osmFableQwopus-3.6-27B-Uncensored", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/osmapi/osmFableQwopus-3.6-27B-Uncensored
- SGLang
How to use osmapi/osmFableQwopus-3.6-27B-Uncensored with 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 "osmapi/osmFableQwopus-3.6-27B-Uncensored" \ --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": "osmapi/osmFableQwopus-3.6-27B-Uncensored", "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 "osmapi/osmFableQwopus-3.6-27B-Uncensored" \ --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": "osmapi/osmFableQwopus-3.6-27B-Uncensored", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use osmapi/osmFableQwopus-3.6-27B-Uncensored with Docker Model Runner:
docker model run hf.co/osmapi/osmFableQwopus-3.6-27B-Uncensored
osmFableQwopus-3.6-27B-Uncensored
Unrestricted - Agentic - Reasoning - Tool-Calling
All the capability, none of the refusals.
osmFableQwopus-3.6-27B-Uncensored is an unrestricted 27B agentic model that reasons step-by-step and operates tools across multi-turn sessions, while delivering top-tier general knowledge. It is a refusal-reduced (abliterated) variant of osmapi/osmQwopus3.6-27B-Fable-Agentic.
Benchmarks
Evaluated head-to-head against the base model on identical questions, with an 8192-token budget so step-by-step reasoning is never truncated.
| Benchmark | Base | This model |
|---|---|---|
| MMLU-Pro (350 Q) | 86.86% | 88.29% |
| GSM8K (300 Q) | 98.00% | 97.67% |
| GPQA-Diamond (198 Q) | 57.58% | 56.57% |
Uncensored at no cost to quality. Removing refusals left capability fully intact: it matches the aligned model on MMLU-Pro (88.29%), GSM8K, and hard GPQA-Diamond reasoning (56.57% vs base 57.58%, within noise) - and still beats the base on knowledge.
MMLU-Pro by category
| Category | Base | This model |
|---|---|---|
| Biology | 96.0% | 98.0% |
| Business | 78.0% | 86.0% |
| Chemistry | 84.0% | 78.0% |
| Computer Science | 84.0% | 82.0% |
| Health | 82.0% | 88.0% |
| Math | 94.0% | 96.0% |
| Physics | 90.0% | 90.0% |
| Overall | 86.86% | 88.29% |
Highlights
- Unrestricted - refusal behavior removed; declines far fewer requests
- Top-tier knowledge - 88.29% MMLU-Pro, above the base, with zero abliteration tax
- Strong math - 97.67% GSM8K
- Agentic tool-calling + step-by-step reasoning
Responsible use
This model has had refusal behavior reduced, so it may produce content a safety-tuned model would decline. You are responsible for how you use it - use it lawfully and ethically, in accordance with the base-model and dataset licenses. It is not intended for producing harmful, illegal, or abusive content.
Capabilities
- Unrestricted, agentic multi-turn tool-calling
- Chain-of-thought reasoning
- Top-tier general knowledge and math
- Multimodal (vision + text) architecture
Usage (vLLM)
vllm serve osmapi/osmFableQwopus-3.6-27B-Uncensored --trust-remote-code --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder --max-model-len 16384
Tip: this model reasons before answering - give it a generous max_tokens so it can finish its chain of thought.
License
Apache 2.0
- Downloads last month
- 24
Model tree for osmapi/osmFableQwopus-3.6-27B-Uncensored
Base model
Jackrong/Qwopus3.6-27B-v2