Instructions to use wshhghghgh/Qwen3.5_2B-Fable-trained with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="wshhghghgh/Qwen3.5_2B-Fable-trained", filename="qwen35-2b-agent-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 wshhghghgh/Qwen3.5_2B-Fable-trained 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 wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M # Run inference directly in the terminal: llama cli -hf wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M # Run inference directly in the terminal: llama cli -hf wshhghghgh/Qwen3.5_2B-Fable-trained: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 wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf wshhghghgh/Qwen3.5_2B-Fable-trained: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 wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
Use Docker
docker model run hf.co/wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "wshhghghgh/Qwen3.5_2B-Fable-trained" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "wshhghghgh/Qwen3.5_2B-Fable-trained", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
- Ollama
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with Ollama:
ollama run hf.co/wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
- Unsloth Studio
How to use wshhghghgh/Qwen3.5_2B-Fable-trained 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 wshhghghgh/Qwen3.5_2B-Fable-trained 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 wshhghghgh/Qwen3.5_2B-Fable-trained to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for wshhghghgh/Qwen3.5_2B-Fable-trained to start chatting
- Pi
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf wshhghghgh/Qwen3.5_2B-Fable-trained: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": "wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf wshhghghgh/Qwen3.5_2B-Fable-trained: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 wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf wshhghghgh/Qwen3.5_2B-Fable-trained: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 "wshhghghgh/Qwen3.5_2B-Fable-trained: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 wshhghghgh/Qwen3.5_2B-Fable-trained with Docker Model Runner:
docker model run hf.co/wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
- Lemonade
How to use wshhghghgh/Qwen3.5_2B-Fable-trained with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.5_2B-Fable-trained-Q4_K_M
List all available models
lemonade list
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 "wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M" \
--custom-provider-id llama-cpp \
--custom-compatibility openai \
--custom-text-input \
--accept-risk \
--skip-healthRun OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"Fable-5-Qwen3.5-4B
Model Details
Model Description
Fable-5-Qwen3.5-4B is an instruction-tuned language model built on top of Qwen3.5-4B. It is fine-tuned using the Glint-Research/Fable-5-traces dataset, which consists of agent trajectories and reasoning traces designed to improve long-horizon planning, tool usage, and complex task execution.
The model is intended for research purposes involving agentic reasoning, software engineering, planning, and multi-step instruction following.
- Developed by: Glint Research
- Funded by: Not publicly disclosed
- Shared by: Glint Research
- Model type: Causal Language Model (Decoder-only Transformer)
- Language(s): Primarily English (multilingual capabilities inherited from Qwen3.5)
- License: Apache-2.0
- Finetuned from model: Qwen/Qwen3.5-4B
Model Sources
- Base Model: https://huggingface.co/Qwen/Qwen3.5-4B
- Training Dataset: https://huggingface.co/datasets/Glint-Research/Fable-5-traces
Uses
Direct Use
This model is suitable for:
- General chat
- Instruction following
- Multi-step reasoning
- Software engineering assistance
- Agent planning
- Tool calling workflows
- Code generation and debugging
- Research on reasoning traces
Downstream Use
Possible downstream applications include:
- Autonomous coding agents
- Research assistants
- Workflow automation
- Interactive tutoring systems
- Multi-agent systems
- Long-horizon planning tasks
Out-of-Scope Use
This model is not intended for:
- Medical diagnosis
- Legal advice
- Financial decision making
- Safety-critical autonomous systems
- High-risk domains requiring guaranteed correctness
Human verification is recommended whenever incorrect outputs could cause harm.
Bias, Risks, and Limitations
Like other large language models, Fable-5-Qwen3.5-4B may:
- Produce factually incorrect information ("hallucinations")
- Generate biased or culturally dependent responses
- Make reasoning errors despite producing convincing explanations
- Be sensitive to prompt wording
- Inherit limitations from its base model and fine-tuning data
Users should carefully validate outputs before deploying them in production environments.
Recommendations
For best performance:
- Use clear, structured prompts.
- Break complex problems into smaller subtasks.
- Verify generated code before execution.
- Keep a human in the loop for important decisions.
Getting Started
Example using Transformers:
from transformers import AutoTokenizer, AutoModelForCausalLM
model_name = "YOUR_MODEL_NAME"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
messages = [
{"role": "user", "content": "Explain how quicksort works."}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
outputs = model.generate(
**inputs,
max_new_tokens=512
)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Training Details
Training Data
The model was fine-tuned using the Glint-Research/Fable-5-traces dataset, which contains synthetic reasoning traces and agent trajectories intended to improve multi-step planning and task execution.
Training Procedure
Preprocessing
Training data was formatted into conversational instruction-response pairs compatible with the Qwen chat template.
Training Hyperparameters
Detailed hyperparameters have not been publicly released.
Training likely followed standard supervised fine-tuning (SFT) procedures.
Evaluation
Testing Data
No standardized benchmark results have been publicly released.
Factors
Performance may vary depending on:
- Prompt quality
- Task complexity
- Context length
- Reasoning depth
- Tool availability
Metrics
No official evaluation metrics have been published.
Results
Qualitative evaluation indicates improved performance on:
- Long-horizon reasoning
- Tool-use planning
- Multi-step coding tasks
- Agent trajectory generation
However, quantitative benchmark results are not currently available.
Model Examination
The model inherits the multilingual capabilities and general knowledge of Qwen3.5 while specializing in reasoning and agent-oriented tasks through supervised fine-tuning.
Environmental Impact
Training infrastructure details have not been publicly disclosed.
- Hardware Type: Not publicly disclosed
- Hours used: Not publicly disclosed
- Cloud Provider: Not publicly disclosed
- Compute Region: Not publicly disclosed
- Carbon Emitted: Unknown
Technical Specifications
Model Architecture
- Architecture: Decoder-only Transformer
- Base Model: Qwen3.5-4B
- Parameter Count: Approximately 2B
- Context Length: Inherited from Qwen3.5 (refer to the base model documentation)
Compute Infrastructure
Hardware
Not publicly disclosed.
Software
Likely trained using the Hugging Face Transformers ecosystem together with PyTorch.
Citation
If you use this model, please cite both the Qwen base model and the Fable-5-traces dataset.
Example:
@misc{qwen35,
title={Qwen3.5},
author={Alibaba Qwen Team},
year={2025}
}
More Information
This model is intended primarily for research and experimentation in reasoning, planning, and agentic AI. Users should evaluate the model carefully before deployment in production systems.
Model Card Authors
Glint Research
Model Card Contact
Please refer to the model repository or organization page for contact information.
- Downloads last month
- 136
4-bit
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama serve -hf wshhghghgh/Qwen3.5_2B-Fable-trained:Q4_K_M