Text Generation
Transformers
Safetensors
qwen3
mergekit
Merge
conversational
text-generation-inference
Instructions to use WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B") model = AutoModelForCausalLM.from_pretrained("WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B
- SGLang
How to use WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B 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 "WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B" \ --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": "WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B", "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 "WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B" \ --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": "WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B with Docker Model Runner:
docker model run hf.co/WithinUsAI/Qwen3-Space.Agent.Claude.Uncensored-4B
Guy Edward DuGan II commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,4 +11,208 @@ datasets:
|
|
| 11 |
- unalignment/toxic-dpo-v0.2
|
| 12 |
- NobodyExistsOnTheInternet/ToxicQAFinal
|
| 13 |
- Orion-zhen/dpo-toxic-zh
|
| 14 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
- unalignment/toxic-dpo-v0.2
|
| 12 |
- NobodyExistsOnTheInternet/ToxicQAFinal
|
| 13 |
- Orion-zhen/dpo-toxic-zh
|
| 14 |
+
---
|
| 15 |
+
Qwen3-Space.Agent.Claude-Uncensored-4B
|
| 16 |
+
|
| 17 |
+
📌 Model Overview
|
| 18 |
+
|
| 19 |
+
Model Name: WithinUsAI/Qwen3-Space.Agent.Claude-Uncensored-4B
|
| 20 |
+
Organization: Within Us AI
|
| 21 |
+
Model Type: Agentic Reasoning LLM (Uncensored Variant)
|
| 22 |
+
Parameter Size: 4B
|
| 23 |
+
Architecture: Qwen 3 (Dense Transformer)
|
| 24 |
+
Context Length: ~32K tokens
|
| 25 |
+
Primary Focus: Agent workflows + uncensored reasoning + long-context tasks
|
| 26 |
+
|
| 27 |
+
This model is a multi-source merged Qwen3-based agent, designed to combine:
|
| 28 |
+
|
| 29 |
+
* 🧠 Reasoning (“thinking” models)
|
| 30 |
+
* 🤖 Agent/tool-use behavior
|
| 31 |
+
* 🔓 Reduced refusal / uncensored outputs
|
| 32 |
+
|
| 33 |
+
It aims to deliver a compact, flexible, and less-restricted AI system for experimentation, research, and local deployment. 
|
| 34 |
+
|
| 35 |
+
⸻
|
| 36 |
+
|
| 37 |
+
🧬 Architecture & Lineage
|
| 38 |
+
|
| 39 |
+
Base Composition
|
| 40 |
+
|
| 41 |
+
This model is a merge of multiple Qwen3-derived systems, including:
|
| 42 |
+
|
| 43 |
+
* Qwen3-4B Thinking (reasoning-focused)
|
| 44 |
+
* Qwen3 Agent Claude/Gemini-style model
|
| 45 |
+
* Uncensored Qwen3 variants
|
| 46 |
+
|
| 47 |
+
These were combined into a single unified 4B model to blend capabilities. 
|
| 48 |
+
|
| 49 |
+
What That Creates
|
| 50 |
+
|
| 51 |
+
A hybrid model with:
|
| 52 |
+
|
| 53 |
+
* Reasoning depth (thinking models)
|
| 54 |
+
* Structured outputs (agent models)
|
| 55 |
+
* Reduced refusal behavior (uncensored variants)
|
| 56 |
+
|
| 57 |
+
Think of it like a three-engine spacecraft 🚀
|
| 58 |
+
Each engine specialized… now flying as one system.
|
| 59 |
+
|
| 60 |
+
⸻
|
| 61 |
+
|
| 62 |
+
🧠 Core Design Philosophy
|
| 63 |
+
|
| 64 |
+
Fuse the best behaviors… remove the limits… keep it small enough to run anywhere.
|
| 65 |
+
|
| 66 |
+
Key Goals:
|
| 67 |
+
|
| 68 |
+
* Merge reasoning + agent + uncensored traits
|
| 69 |
+
* Enable long-context problem solving
|
| 70 |
+
* Preserve performance in a 4B footprint
|
| 71 |
+
* Support real-world agent pipelines
|
| 72 |
+
|
| 73 |
+
⸻
|
| 74 |
+
|
| 75 |
+
⚙️ Key Capabilities
|
| 76 |
+
|
| 77 |
+
🧠 Reasoning
|
| 78 |
+
|
| 79 |
+
* Step-by-step thinking
|
| 80 |
+
* Multi-hop problem solving
|
| 81 |
+
* Long-context coherence (~32K tokens)
|
| 82 |
+
|
| 83 |
+
🤖 Agentic Behavior
|
| 84 |
+
|
| 85 |
+
* Task decomposition
|
| 86 |
+
* Tool-use compatibility
|
| 87 |
+
* Structured outputs (JSON, actions)
|
| 88 |
+
|
| 89 |
+
💻 Coding
|
| 90 |
+
|
| 91 |
+
* Code generation & debugging
|
| 92 |
+
* Algorithm reasoning
|
| 93 |
+
* SWE-style workflows
|
| 94 |
+
|
| 95 |
+
🔓 Uncensored Behavior
|
| 96 |
+
|
| 97 |
+
* Reduced refusal rates
|
| 98 |
+
* More permissive responses
|
| 99 |
+
* Suitable for:
|
| 100 |
+
* Alignment research
|
| 101 |
+
* Safety testing
|
| 102 |
+
* Edge-case exploration
|
| 103 |
+
|
| 104 |
+
⸻
|
| 105 |
+
|
| 106 |
+
📦 Deployment
|
| 107 |
+
|
| 108 |
+
Supported Environments
|
| 109 |
+
|
| 110 |
+
* llama.cpp
|
| 111 |
+
* LM Studio
|
| 112 |
+
* Ollama (GGUF / compatible builds depending on conversion)
|
| 113 |
+
|
| 114 |
+
Runtime Characteristics
|
| 115 |
+
|
| 116 |
+
* ~4B parameters → runs on consumer GPUs / strong CPUs
|
| 117 |
+
* ~32K context → supports long conversations and documents 
|
| 118 |
+
|
| 119 |
+
⸻
|
| 120 |
+
|
| 121 |
+
🚀 Intended Use
|
| 122 |
+
|
| 123 |
+
✅ Ideal Use Cases
|
| 124 |
+
|
| 125 |
+
* Agent frameworks (tool-calling systems)
|
| 126 |
+
* Long-context reasoning tasks
|
| 127 |
+
* AI experimentation (uncensored behavior)
|
| 128 |
+
* Local assistants with fewer restrictions
|
| 129 |
+
* Alignment and safety research
|
| 130 |
+
|
| 131 |
+
⚠️ Important Considerations
|
| 132 |
+
|
| 133 |
+
* Outputs are less restricted than aligned models
|
| 134 |
+
* May generate sensitive or unsafe content
|
| 135 |
+
* Requires external moderation or guardrails for production use
|
| 136 |
+
|
| 137 |
+
⸻
|
| 138 |
+
|
| 139 |
+
🧪 Training & Merge Methodology
|
| 140 |
+
|
| 141 |
+
This model follows a merge-based synthesis pipeline:
|
| 142 |
+
|
| 143 |
+
1. Select complementary base models:
|
| 144 |
+
* Reasoning-focused
|
| 145 |
+
* Agent-focused
|
| 146 |
+
* Uncensored variants
|
| 147 |
+
2. Merge weights into unified architecture
|
| 148 |
+
3. Align behavior using preference tuning (DPO-style datasets)
|
| 149 |
+
4. Optimize for:
|
| 150 |
+
* Reduced refusals
|
| 151 |
+
* Stable outputs
|
| 152 |
+
* Agent usability 
|
| 153 |
+
|
| 154 |
+
⸻
|
| 155 |
+
|
| 156 |
+
📊 Expected Performance Profile
|
| 157 |
+
|
| 158 |
+
Capability Strength
|
| 159 |
+
Reasoning High
|
| 160 |
+
Agent behavior High
|
| 161 |
+
Coding High
|
| 162 |
+
Context handling High
|
| 163 |
+
Safety filtering Low (intentionally reduced)
|
| 164 |
+
|
| 165 |
+
⸻
|
| 166 |
+
|
| 167 |
+
📚 Datasets & Training Sources
|
| 168 |
+
|
| 169 |
+
Following Within Us AI methodology:
|
| 170 |
+
|
| 171 |
+
* Proprietary datasets created by Within Us AI
|
| 172 |
+
* Third-party datasets used without ownership claims
|
| 173 |
+
* Includes:
|
| 174 |
+
* Reasoning traces
|
| 175 |
+
* Agent workflows
|
| 176 |
+
* Preference optimization (DPO-style tuning)
|
| 177 |
+
|
| 178 |
+
⸻
|
| 179 |
+
|
| 180 |
+
📜 License
|
| 181 |
+
|
| 182 |
+
License Type: Inherits from Qwen / base model ecosystem
|
| 183 |
+
|
| 184 |
+
Attribution Notes:
|
| 185 |
+
|
| 186 |
+
* Base models: Qwen (Alibaba ecosystem)
|
| 187 |
+
* Merge & methodology: Within Us AI
|
| 188 |
+
* Additional model influences (Claude-style / Gemini-style behaviors via distillation/merging)
|
| 189 |
+
* Third-party datasets used without ownership claims
|
| 190 |
+
* Credit belongs to original creators
|
| 191 |
+
|
| 192 |
+
⸻
|
| 193 |
+
|
| 194 |
+
🙏 Acknowledgements
|
| 195 |
+
|
| 196 |
+
* Alibaba Qwen team
|
| 197 |
+
* Open-source agent model contributors
|
| 198 |
+
* GGUF / llama.cpp ecosystem
|
| 199 |
+
* AI alignment & safety research community
|
| 200 |
+
|
| 201 |
+
⸻
|
| 202 |
+
|
| 203 |
+
🔗 Links
|
| 204 |
+
|
| 205 |
+
* Model: https://huggingface.co/WithinUsAI/Qwen3-Space.Agent.Claude-Uncensored-4B
|
| 206 |
+
* Organization: https://huggingface.co/WithinUsAI
|
| 207 |
+
|
| 208 |
+
⸻
|
| 209 |
+
|
| 210 |
+
🧩 Closing Note
|
| 211 |
+
|
| 212 |
+
This model feels like a hybrid intelligence node 🌌
|
| 213 |
+
|
| 214 |
+
Part thinker.
|
| 215 |
+
Part agent.
|
| 216 |
+
Part rule-breaker.
|
| 217 |
+
|
| 218 |
+
All compressed into 4B parameters that punch way above their weight.
|