4 Downloads Updated 6 hours ago
ollama run jacokon/qwen3.8-27b-heretic-ara
A decensored/abliterated version of Qwen3.8-27B, fine-tuned for high performance in autonomous coding agents (such as Claude Code, OpenCode, Aider, and Hermes).
Q4_K_M GGUF (~16 GB)This release features custom template and runtime patches specifically tailored for Agentic Tool Calling & Anthropic API translation layers:
<tool_call>{"name": ..., "arguments": ...}</tool_call>), preventing parsing failures and silent hangs in Anthropic /v1/messages and OpenAI /v1/chat/completions compatibility layers.raise_exception), allowing arbitrary middle-turn system prompts, multi-step tool returns, reasoning effort parameters (high, medium, low), and unescaped regex/log contents without triggering HTTP 500 errors.num_ctx 65536), temperature 0.6, and top_p 0.95 for consistent and deterministic code generation. (Context Window: Default 64k (num_ctx 65536), dynamically adjustable up to 256k (262,144 tokens) based on available VRAM)ollama launch claude --model jacokon/qwen3.8-27b-heretic-ara:latest
ollama launch opencode --model jacokon/qwen3.8-27b-heretic-ara:latest
ollama run jacokon/qwen3.8-27b-heretic-ara:latest
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:11434/v1",
api_key="ollama"
)
response = client.chat.completions.create(
model="jacokon/qwen3.8-27b-heretic-ara:latest",
messages=[
{"role": "user", "content": "Write a python script to parse logs."}
],
temperature=0.6,
)
print(response.choices[0].message.content)
jacokon