750 Downloads Updated 1 week ago
ollama run nandhank/qwen3.5-abliterated-truthful:9b
ollama launch claude --model nandhank/qwen3.5-abliterated-truthful:9b
ollama launch opencode --model nandhank/qwen3.5-abliterated-truthful:9b
ollama launch hermes --model nandhank/qwen3.5-abliterated-truthful:9b
ollama launch openclaw --model nandhank/qwen3.5-abliterated-truthful:9b
A customized 9B parameter AI model focused on truthful, direct, analytical, and technically rigorous responses.
The model is designed to challenge incorrect assumptions, identify contradictions, avoid unnecessary agreement, and provide practical technical solutions.
| Property | Value |
|---|---|
| Parameters | 9.7B |
| Architecture | Qwen 3.5 |
| Quantization | Q4_K_M |
| Default Context | 32K tokens |
| Embedding Size | 4096 |
| License | Apache 2.0 |
| Reasoning | Yes |
| Vision | Yes |
| Tool Calling | Yes |
| Code Generation | Yes |
The model prioritizes accuracy over agreement.
It is designed to:
The model uses a direct and analytical communication style.
Instead of agreeing with an incorrect statement, it should clearly explain what is wrong and provide the correct interpretation.
The goal is firm, clear, and technically honest communication.
The model is configured for software development and large coding tasks.
It aims to:
num_ctx = 32768
num_predict = 16384
temperature = 0.2
top_k = 20
top_p = 0.9
repeat_penalty = 1.05
This model uses Q4_K_M quantization.
Q4_K_M provides a practical balance between:
It is suitable for local deployment on systems with limited memory, including Apple Silicon systems.
Install Ollama first.
Then pull the model:
ollama pull nandhank/qwen3.5-abliterated-truthful:9b
Run the model:
ollama run nandhank/qwen3.5-abliterated-truthful:9b
You: Is Python faster than C++?
Model:
No. In general, C++ is faster for CPU-intensive workloads because it is
compiled to native machine code with lower runtime overhead.
Python prioritizes development speed and simplicity rather than raw
execution performance.
However, Python can still achieve high performance by using optimized
native libraries such as NumPy, TensorFlow, and other compiled libraries.
The model is designed to correct the premise rather than blindly agree with it.
Run interactively:
ollama run nandhank/qwen3.5-abliterated-truthful:9b
curl http://localhost:11434/api/generate \
-d '{
"model": "nandhank/qwen3.5-abliterated-truthful:9b",
"prompt": "Explain how a transformer works.",
"stream": false
}'
import requests
response = requests.post(
"http://localhost:11434/api/generate",
json={
"model": "nandhank/qwen3.5-abliterated-truthful:9b",
"prompt": "Explain the difference between TCP and UDP.",
"stream": False
}
)
print(response.json()["response"])
The default context window is configured to:
32,768 tokens
This is a runtime configuration and does not represent a change to the model architecture.
Users with sufficient hardware can increase the context window according to their available system memory.
Actual inference performance depends on:
Q4_K_M helps reduce memory requirements while maintaining a strong balance of quality and performance.
Do not agree with a user simply because they expect agreement.
Analyze the actual problem and identify hidden assumptions or contradictions.
When information is uncertain, acknowledge the uncertainty instead of fabricating an answer.
Technical mistakes should be addressed clearly and directly while maintaining professional communication.
The model can still:
The behavioral configuration does not guarantee factual correctness.
Important outputs should be independently verified before being used in production or other high-impact applications.
Apache License 2.0.
Nandhan K
Focus areas:
This model is provided for research, development, experimentation, and general-purpose local AI usage.
Users are responsible for validating generated content and using the model appropriately.