Instructions to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF", filename="Qwopus3.5-4B-Coder-Fable5-v1-Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-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 AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
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 AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
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 AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-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": "AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
- Ollama
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with Ollama:
ollama run hf.co/AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
- Unsloth Studio
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF to start chatting
- Pi
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-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 AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
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 AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
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 "AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M" \ --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"
- Docker Model Runner
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with Docker Model Runner:
docker model run hf.co/AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
- Lemonade
How to use AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AkshayCoder48/Qwopus3.5-4B-Coder-Fable5-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwopus3.5-4B-Coder-Fable5-v1-GGUF-Q4_K_M
List all available models
lemonade list
Duplicate from shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-GGUF
Browse filesCo-authored-by: Shuhul Razdan <shuhulx@users.noreply.huggingface.co>
- .gitattributes +38 -0
- Qwopus3.5-4B-Coder-Fable5-v1-Q4_K_M.gguf +3 -0
- Qwopus3.5-4B-Coder-Fable5-v1-Q5_K_M.gguf +3 -0
- Qwopus3.5-4B-Coder-Fable5-v1-mmproj-BF16.gguf +3 -0
- README.md +201 -0
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Qwopus3.5-4B-Coder-Fable5-v1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwopus3.5-4B-Coder-Fable5-v1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwopus3.5-4B-Coder-Fable5-v1-mmproj-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d3621cf4d7745b196d7bd6795eb452d777e6ebb910d049ab151339f32d29a00
|
| 3 |
+
size 2783446432
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f48d43eca68c80ec2455bd482ca4c0efab411402edc4dcee48383585b8fedc8
|
| 3 |
+
size 3161425312
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:263043e99496ce01a6a050defcd3ded5a6d64e4638e5291a1b48926587c1fe50
|
| 3 |
+
size 675568672
|
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: shuhulx/Qwopus3.5-4B-Coder-Fable5-v1
|
| 4 |
+
datasets:
|
| 5 |
+
- Glint-Research/Fable-5-traces
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
+
library_name: gguf
|
| 10 |
+
tags:
|
| 11 |
+
- gguf
|
| 12 |
+
- llama-cpp
|
| 13 |
+
- lm-studio
|
| 14 |
+
- qwen3_5
|
| 15 |
+
- fable5
|
| 16 |
+
- reasoning
|
| 17 |
+
- agent
|
| 18 |
+
- tool-use
|
| 19 |
+
- function-calling
|
| 20 |
+
- coder
|
| 21 |
+
- coding
|
| 22 |
+
- debugging
|
| 23 |
+
- local-inference
|
| 24 |
+
- quantized
|
| 25 |
+
- conversational
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
<div align="center">
|
| 29 |
+
|
| 30 |
+
# 馃捇 Qwopus3.5-4B-Coder-Fable5-v1 GGUF
|
| 31 |
+
|
| 32 |
+
### GGUF builds for llama.cpp, LM Studio, and local inference
|
| 33 |
+
|
| 34 |
+
<p><b>Fable-5 traces</b> 路 <b>agentic coding</b> 路 <b>tool use</b> 路 <b>debugging</b></p>
|
| 35 |
+
|
| 36 |
+
</div>
|
| 37 |
+
|
| 38 |
+
---
|
| 39 |
+
|
| 40 |
+
## Overview
|
| 41 |
+
|
| 42 |
+
**Qwopus3.5-4B-Coder-Fable5-v1** is a Fable-5 trace continuation of [`Jackrong/Qwopus3.5-4B-Coder`](https://huggingface.co/Jackrong/Qwopus3.5-4B-Coder).
|
| 43 |
+
|
| 44 |
+
The base model, Qwopus3.5-4B-Coder, is a compact Qwen3.5-based coding model trained for reasoning, tool use, function calling, coding workflows, and agent-style behavior.
|
| 45 |
+
|
| 46 |
+
This release continues that model on [`Glint-Research/Fable-5-traces`](https://huggingface.co/datasets/Glint-Research/Fable-5-traces), a dataset of Claude Fable 5 local coding-agent traces. The dataset is heavily oriented around tool-use trajectories, repository work, local command context, code editing, debugging loops, and `<think>`-style reasoning completions.
|
| 47 |
+
|
| 48 |
+
The result is a small local coding-agent model intended for:
|
| 49 |
+
|
| 50 |
+
| Area | Description |
|
| 51 |
+
|---|---|
|
| 52 |
+
| Tool-use workflows | Bash, Read, Write, Edit, repo inspection, and action traces. |
|
| 53 |
+
| Debugging | Failing tests, stack traces, root-cause analysis, and patch planning. |
|
| 54 |
+
| Trace-style reasoning | Long-form planning and `<think>` style reasoning traces. |
|
| 55 |
+
| Local agents | Hermes-style, Claude-Code-style, OpenCode-style, and LM Studio workflows. |
|
| 56 |
+
|
| 57 |
+
## Files
|
| 58 |
+
|
| 59 |
+
Typical GGUF files:
|
| 60 |
+
|
| 61 |
+
- `Qwopus3.5-4B-Coder-Fable5-v1-Q4_K_M.gguf`
|
| 62 |
+
- `Qwopus3.5-4B-Coder-Fable5-v1-Q5_K_M.gguf`
|
| 63 |
+
- `Qwopus3.5-4B-Coder-Fable5-v1-mmproj-BF16.gguf`
|
| 64 |
+
|
| 65 |
+
## Which file should I use?
|
| 66 |
+
|
| 67 |
+
| File | Use case |
|
| 68 |
+
|---|---|
|
| 69 |
+
| `Q4_K_M` | Best default. Small, fast, good quality. |
|
| 70 |
+
| `Q5_K_M` | Better quality while still compact. |
|
| 71 |
+
| `Q8_0` | Higher quality, larger memory use, if included. |
|
| 72 |
+
| `mmproj-BF16` | Multimodal projector for compatible runtimes. |
|
| 73 |
+
|
| 74 |
+
## llama.cpp
|
| 75 |
+
|
| 76 |
+
```bash
|
| 77 |
+
llama-cli \
|
| 78 |
+
-m Qwopus3.5-4B-Coder-Fable5-v1-Q5_K_M.gguf \
|
| 79 |
+
-p "Write a Bash/Read/Edit style plan for debugging a failing Python repo." \
|
| 80 |
+
-n 768 \
|
| 81 |
+
--temp 0.7 \
|
| 82 |
+
--top-p 0.95
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
## llama.cpp Server
|
| 86 |
+
|
| 87 |
+
```bash
|
| 88 |
+
llama-server \
|
| 89 |
+
-m Qwopus3.5-4B-Coder-Fable5-v1-Q5_K_M.gguf \
|
| 90 |
+
--host 0.0.0.0 \
|
| 91 |
+
--port 8080 \
|
| 92 |
+
--ctx-size 8192
|
| 93 |
+
```
|
| 94 |
+
|
| 95 |
+
Then call it with an OpenAI-compatible client:
|
| 96 |
+
|
| 97 |
+
```bash
|
| 98 |
+
curl -X POST "http://localhost:8080/v1/chat/completions" \
|
| 99 |
+
-H "Content-Type: application/json" \
|
| 100 |
+
--data '{
|
| 101 |
+
"model": "Qwopus3.5-4B-Coder-Fable5-v1-Q5_K_M.gguf",
|
| 102 |
+
"messages": [
|
| 103 |
+
{"role": "user", "content": "Write a tool-use plan for debugging a Python repo."}
|
| 104 |
+
],
|
| 105 |
+
"temperature": 0.7,
|
| 106 |
+
"top_p": 0.95
|
| 107 |
+
}'
|
| 108 |
+
```
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
## About the Fable-5 Traces
|
| 112 |
+
|
| 113 |
+
[`Glint-Research/Fable-5-traces`](https://huggingface.co/datasets/Glint-Research/Fable-5-traces) contains Claude Fable 5 coding traces.
|
| 114 |
+
|
| 115 |
+
The dataset includes fields such as:
|
| 116 |
+
|
| 117 |
+
```text
|
| 118 |
+
uid
|
| 119 |
+
source_file
|
| 120 |
+
session
|
| 121 |
+
model
|
| 122 |
+
context
|
| 123 |
+
cot
|
| 124 |
+
output_type
|
| 125 |
+
output
|
| 126 |
+
completion
|
| 127 |
+
origin
|
| 128 |
+
```
|
| 129 |
+
|
| 130 |
+
The examples are not simple chat pairs. They are multi-step agent trajectories with local development context, reasoning traces, and tool-use outputs.
|
| 131 |
+
|
| 132 |
+
Common patterns in the dataset include:
|
| 133 |
+
|
| 134 |
+
- user coding requests
|
| 135 |
+
- local-command caveats
|
| 136 |
+
- repository inspection
|
| 137 |
+
- Bash command usage
|
| 138 |
+
- file reads
|
| 139 |
+
- file writes
|
| 140 |
+
- edits
|
| 141 |
+
- debugging passes
|
| 142 |
+
- playtesting / validation loops
|
| 143 |
+
- `<think>...</think>` reasoning traces
|
| 144 |
+
- tool-use completions
|
| 145 |
+
|
| 146 |
+
A large portion of the dataset is `tool_use` style data, which makes it especially relevant for local coding agents and developer automation.
|
| 147 |
+
|
| 148 |
+
## Capabilities
|
| 149 |
+
|
| 150 |
+
### Agentic coding
|
| 151 |
+
|
| 152 |
+
Designed for coding-agent loops where the model must inspect a repo, plan work, call tools, edit files, and validate changes.
|
| 153 |
+
|
| 154 |
+
### Tool-use style outputs
|
| 155 |
+
|
| 156 |
+
Works well with prompts that expose structured tools such as:
|
| 157 |
+
|
| 158 |
+
```text
|
| 159 |
+
Bash
|
| 160 |
+
Read
|
| 161 |
+
Write
|
| 162 |
+
Edit
|
| 163 |
+
Search
|
| 164 |
+
Grep
|
| 165 |
+
```
|
| 166 |
+
|
| 167 |
+
### Debugging and repair
|
| 168 |
+
|
| 169 |
+
Useful for:
|
| 170 |
+
|
| 171 |
+
- finding likely failing files
|
| 172 |
+
- explaining stack traces
|
| 173 |
+
- planning test commands
|
| 174 |
+
- proposing minimal patches
|
| 175 |
+
- iterating after errors
|
| 176 |
+
|
| 177 |
+
### Local-first deployment
|
| 178 |
+
|
| 179 |
+
The release includes Transformers, GGUF, MLX, and MLX 4-bit formats so it can run in Python, llama.cpp, LM Studio, and Apple Silicon workflows.
|
| 180 |
+
|
| 181 |
+
|
| 182 |
+
## Available Releases
|
| 183 |
+
|
| 184 |
+
| Release | Repo | Best for |
|
| 185 |
+
|---|---|---|
|
| 186 |
+
| Transformers / Safetensors | [`shuhulx/Qwopus3.5-4B-Coder-Fable5-v1`](https://huggingface.co/shuhulx/Qwopus3.5-4B-Coder-Fable5-v1) | Python, Transformers, custom inference. |
|
| 187 |
+
| GGUF | [`shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-GGUF`](https://huggingface.co/shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-GGUF) | llama.cpp, LM Studio, local CPU/GPU inference. |
|
| 188 |
+
| MLX | [`shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-MLX`](https://huggingface.co/shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-MLX) | Apple Silicon full MLX inference. |
|
| 189 |
+
| MLX 4-bit | [`shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-MLX-4bit`](https://huggingface.co/shuhulx/Qwopus3.5-4B-Coder-Fable5-v1-MLX-4bit) | Apple Silicon low-memory inference. |
|
| 190 |
+
|
| 191 |
+
## Credits
|
| 192 |
+
|
| 193 |
+
Built on:
|
| 194 |
+
|
| 195 |
+
- [`Jackrong/Qwopus3.5-4B-Coder`](https://huggingface.co/Jackrong/Qwopus3.5-4B-Coder) by Jackrong
|
| 196 |
+
- [`Glint-Research/Fable-5-traces`](https://huggingface.co/datasets/Glint-Research/Fable-5-traces) by Glint-Research
|
| 197 |
+
- Qwen / Qwen3.5 model family
|
| 198 |
+
- Unsloth
|
| 199 |
+
- Hugging Face
|
| 200 |
+
- llama.cpp
|
| 201 |
+
- mlx-lm
|