Instructions to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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": "weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
- Ollama
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with Ollama:
ollama run hf.co/weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with Docker Model Runner:
docker model run hf.co/weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
- Lemonade
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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 "weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-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"
- ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF
- What it is designed for / ่ฎญ็ป็ฎๆ
- Training summary / ่ฎญ็ปๆ่ฆ
- Download and run with Ollama
- LM Studio
- Independent validation warning / ็ฌ็ซ้ช่ฏ่ญฆๅ๏ผ2026-08-28๏ผ
- Codex + ASB execution ceiling
- Connect to Automation Skill Builder
- Recommended operating boundary / ๆจ่่พน็
- About Automation Skill Builder
- License and attribution
- Disclaimer
- What it is designed for / ่ฎญ็ป็ฎๆ
ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF
A Q4_K_M GGUF release of a Qwen2.5-Coder-7B-Instruct derivative specialized for Automation Skill Builder (ASB) workflows.
่ฟๆฏ้ขๅ Automation Skill Builder๏ผASB๏ผ ๅทฅไฝๆตๅฎๅ่ฎญ็ป็ Qwen2.5-Coder-7B-Instruct ่ก็ๆจกๅ๏ผๅนถไปฅ Q4_K_M GGUF ๆ ผๅผๅๅธใ
Automation Skill Builder / visualbuild.me is a local-first AI automation platform: record once, compile the workflow into deterministic runtime logic, and run it locally without requiring AI at runtime.
What it is designed for / ่ฎญ็ป็ฎๆ
The targeted training emphasizes:
- MCP/ASB tool selection and short action planning
- parameter discovery and schema preservation
- ASB model-wiring conventions such as literal '_sb_get' / '_sb_typed_get'
- checking 'ai_sk_wire_preview' before packaging
- recovery after tool, schema, or packaging errors
- validating packaged skills with non-default parameters
- distinguishing exit-code success from verified external effects
ๅฎๅ่ฝๅๅ ๆฌ๏ผ
- MCP/ASB ๅทฅๅ ท้ๆฉไธ็ญๅจไฝ่งๅ
- ๅๆฐๅ็ฐใ็ฑปๅไธ schema ไฟ็
- ASB ๆจกๅๆฅ็บฟ่งๅ๏ผไพๅฆๅญ้ข้ '_sb_get' / '_sb_typed_get'
- ๆๅ ๅๆง่ก 'ai_sk_wire_preview'
- ๅทฅๅ ทใschema ไธๆๅ ้่ฏฏๆขๅค
- ไฝฟ็จ้้ป่ฎคๅๆฐ้ช่ฏๆๅ ไบง็ฉ
- ไธๆ้ๅบ็ 0 ่ฏฏ่ฎคไธบไธๅก็ปๆๅฟ ็ถๆญฃ็กฎ
Training summary / ่ฎญ็ปๆ่ฆ
- Base model: Qwen/Qwen2.5-Coder-7B-Instruct
- Training candidates: 1,980
- Validation candidates: 220
- Epochs: 2
- LoRA rank / alpha: 32 / 64
- Train loss: 0.1829
- Evaluation loss: 0.0928
- Quantization: Q4_K_M
- GGUF size: 4,683,073,472 bytes
- SHA-256: 57a2c64aa270c9bd856e6244eaa8435831b7e178634648b4e170f82377cb22d1
The GGUF was loaded and tested successfully with llama.cpp after conversion. Benchmark: internal 40-case mock suite โ single-tool tasks ~90% pass, schema-preservation ~90% pass, multi-step workflows ~56% pass, error-recovery ~50% pass, safety-boundary cases ~75% pass. Recovery and safety are the known weak points; see "Recommended operating boundary" below.
Download and run with Ollama
Recent Ollama versions can load the Hugging Face GGUF directly:
ollama run hf.co/weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF:Q4_K_M
The included Modelfile requests a 49,152-token profile, but the published Q4_K_M GGUF metadata reports qwen2.context_length = 32768. In the tested Ollama setup, the metadata limit won and a ~37.3k-token ASB request was rejected. Do not treat this file as a validated 49,152-context GGUF:
ollama create asb-qwen25-coder-v2 -f Modelfile
ollama run asb-qwen25-coder-v2
Verify:
ollama show --modelfile asb-qwen25-coder-v2
LM Studio
In LM Studio, search for:
weahoo/ASB-Qwen2.5-Coder-7B-Targeted-v2-GGUF
Select ASB-Qwen2.5-Coder-7B-Targeted-v2-Q4_K_M.gguf, then use:
Context length: 32768 (validated GGUF metadata; 49152 was not achieved in Ollama testing)
Temperature: 0.1
OpenAI-compatible server: enabled
Default port: 1234
Independent validation warning / ็ฌ็ซ้ช่ฏ่ญฆๅ๏ผ2026-08-28๏ผ
A Windows + Ollama + ASB lifecycle test found limitations that materially affect standard-client compatibility:
- Native OpenAI-compatible tool calling did not pass. Correct tool names and arguments were emitted as JSON inside message.content, not in the standard message.tool_calls field. Clients that route exclusively from tool_calls will not receive these calls unless they add a custom content parser. This is a basic interoperability limitation, not only a multi-step accuracy issue.
- The published Q4_K_M GGUF reports qwen2.context_length = 32768. Setting num_ctx 49152 did not override this metadata in the tested Ollama setup. ASB Start describing produced a ~37.3k-token request and was rejected before inference.
- Short code generation failed source review after two attempts. The attempts contained missing imports/CLI handling defects and an incorrect output type.
- The independent trusted-agent lifecycle was not completed by the model. Parameter analysis correctly identified 3/3 runtime inputs plus the output, and ASB wiring, packaging, and two non-default EXE runs passed only after deterministic human correction of the generated Python.
Therefore, use this release as an experimental ASB-oriented planning/analysis component behind validation gatesโnot as a drop-in standard tool-calling model or an unattended end-to-end trusted agent.
ไธญๆๆ่ฆ๏ผๆฌๆฌก็ฌ็ซๆต่ฏๅ็ฐ๏ผๅทฅๅ ท่ฐ็จๆฒกๆ่ฟๅ ฅๆ ๅ message.tool_calls ๅญๆฎต๏ผGGUF ๅฎ้ ไธไธๆๅ ๆฐๆฎไธบ 32768๏ผไธคๆฌก็ญไปฃ็ ็ๆไปๆช้่ฟๆบ็ ๅฎกๆฅ๏ผๅฎๆดๅฏไฟกไปฃ็้ญ็ฏๆช็ฑๆจกๅ็ฌ็ซๅฎๆใๅๆฐๅๆใๆฅ็บฟใๆๅ ๅ EXE ้้ป่ฎคๅๆฐ้ชๆถๅจไบบๅทฅ็กฎๅฎๆงไฟฎๆญฃไปฃ็ ๅ้่ฟใ
Public harness and full evidence: https://github.com/weahoo/asb-model-eval
Codex + ASB execution ceiling
A separate fixed 20-case EvalPlus pilot measured Codex authoring solutions and using ASB run_code as the execution surface:
- first attempt: 17/20 (85%);
- one explicit retry: 3/3 corrected, cumulative 20/20;
- ASB evaluation results returned: 20/20;
- lost or fabricated results: 0;
- representative ASB wiring, Windows packaging, and non-default runs: 3/3.
No additional correctness loss attributable to ASB was observed within this fixed pilot. This is a strong-agent platform ceiling, not a score for this Qwen model and not a full EvalPlus leaderboard result. A completely ASB-free replay was not independently executed on the same host, so the result should not be generalized as universal equivalence.
Evidence and reproducible harness:
- https://github.com/weahoo/asb-model-eval
- https://github.com/weahoo/asb-model-eval/blob/main/results/2026-08-28-codex-asb-evalplus-pilot.md
Connect to Automation Skill Builder
Ollama:
Base URL: http://127.0.0.1:11434/v1
Model: asb-qwen25-coder-v2:latest
API key: ollama
LM Studio:
Base URL: http://127.0.0.1:1234/v1
Model: use the model ID displayed by LM Studio
API key: lm-studio
Recommended ASB lifecycle:
- Generate or record the workflow.
- Analyze parameters and confirm the complete intended schema.
- Run ai_sk_wire_preview.
- Package only when preview returns ok: true.
- Execute the deliverable with parameters different from recorded/default values.
- Verify files, UI state, API responses, or other external effectsโnot only process exit code.
Recommended operating boundary / ๆจ่่พน็
This model is intended as a trusted planning and code-generation component inside a validated ASB workflow. It should not yet be treated as an unrestricted, unattended desktop agent.
Recommended usage:
- keep individual planning segments shortโapproximately five actions when possible;
- divide long MCP recordings into smaller stages;
- retain ASB schema and wiring checks;
- require non-default parameter acceptance tests;
- require human review for destructive, external-send, credential, or permission-changing actions.
ๆฌๆจกๅ้ๅๅจ ASB ๆ ก้ชไฝ็ณปๅ ไฝไธบๅฏไฟก่งๅไธไปฃ็ ็ๆ็ปไปถไฝฟ็จ๏ผๆไธๅปบ่ฎฎไฝไธบไธๅ้ๅถใๆ ไบบ็็ฃ็ๆก้ขไปฃ็ใ
A real example / ็ๅฎๆกไพ
In a controlled comparison against a cloud model (GLM-5.1) on the same ASB wiring-convention error, GLM-5.1 corrected the issue in one round; this local model needed two rounds and still did not converge, requiring manual correction. This is a known capability gap on multi-round self-correction, not a hypothetical caveat.
About Automation Skill Builder
Automation Skill Builder is a local-first automation layer for desktop, browser, MCP and business-system workflows. AI can help capture and parameterize an operation, while the delivered runtime logic can execute deterministically without an AI call on every run.
- Product and downloads: visualbuild.me
- Positioning: record with AI, run without AI
- Outputs: reusable scripts, MCP skills and packaged desktop deliverables
- Platforms: Windows and macOS, with workflow support varying by integration
License and attribution
This derivative follows the Apache 2.0 license of the Qwen2.5-Coder base model. Qwen and Alibaba Cloud are not affiliated with or endorsing Automation Skill Builder. Users are responsible for evaluating generated code and automation behavior for their environment. Public evaluation harness and reviewed reports: https://github.com/weahoo/asb-model-eval
Disclaimer
Training and evaluation results do not guarantee safe or correct execution in every environment. Always validate tool arguments, paths, permissions, generated code, packaging wiring and external effects before production use.
- Downloads last month
- 238
4-bit