GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF overview

Qwen3.5 2B — Function Calling xLAM — GGUF GGUF quantizations of ermiaazarkhalili/Qwen3.5 2B Function Calling xLAM https://huggingface.co/ermiaazarkhalili/Qwen3…

ggufllama.cppquantizedqwen3function-callingtext-generationendataset:Salesforce/xlam-function-calling-60kbase_model:ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAMbase_model:quantized:ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAMlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~1.19 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation

Repository Files & Downloads

3 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
qwen3.5-2b-function-calling-xlam.q4_k_m.ggufGGUFGGUF1.19 GBDownload
qwen3.5-2b-function-calling-xlam.q5_k_m.ggufGGUFGGUF1.31 GBDownload
qwen3.5-2b-function-calling-xlam.q8_0.ggufGGUFGGUF1.87 GBDownload

Model Details

Model IDermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF
Authorermiaazarkhalili
Pipelinetext-generation
Licenseapache-2.0
Base modelermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM
Last modified2026-06-29T04:18:04.000Z

Model README

---

base_model: ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM

tags:

  • gguf
  • llama.cpp
  • quantized
  • qwen3
  • function-calling

license: apache-2.0

language:

  • en

datasets:

  • Salesforce/xlam-function-calling-60k

pipeline_tag: text-generation

---

Qwen3.5-2B — Function Calling (xLAM) — GGUF

GGUF quantizations of ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM,

a function-calling fine-tune trained on Salesforce's xLAM dataset and converted with

llama.cpp.

| Field | Value |

|---|---|

| Source checkpoint | ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM |

| Base model | Qwen/Qwen3.5-2B |

| Dataset | Salesforce/xlam-function-calling-60k |

| Objective | Supervised fine-tuning for structured tool / function calling |

| Quantization tool | llama.cpp convert_hf_to_gguf.py + llama-quantize |

> Conversion note. The published source repo stores bitsandbytes 4-bit (nf4) weights, which llama.cpp cannot convert directly. These GGUFs were therefore built from the full-precision merged checkpoint produced during training, so they reflect the model's fp16 weights rather than a re-quantized 4-bit copy.

Available quantizations

| File | Size | Notes |

|---|---|---|

| qwen3.5-2b-function-calling-xlam.q4_k_m.gguf | 1.27 GB (recommended) | 4-bit K-quant medium; best size/quality balance |

| qwen3.5-2b-function-calling-xlam.q5_k_m.gguf | 1.41 GB (balanced) | 5-bit K-quant medium; near-full quality |

| qwen3.5-2b-function-calling-xlam.q8_0.gguf | 2.01 GB (largest) | 8-bit; closest to the source precision |

Recommended default: Q4_K_M. For maximum fidelity use Q8_0; for the smallest

footprint use Q4_K_M (no lower-bit quants are published for this model).

Usage

llama.cpp

# One-shot
llama-cli -hf ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF --jinja -p "Your prompt here" -n 256

# Interactive chat
llama-cli -hf ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF --jinja -cnv

Ollama

ollama run hf.co/ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF:Q4_K_M

llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF",
    filename="*q4_k_m.gguf",
    n_ctx=4096,
)
out = llm.create_chat_completion(
    messages=[{"role": "user", "content": "Your prompt here"}],
    max_tokens=256,
)
print(out["choices"][0]["message"]["content"])

Intended use

Research and non-commercial experimentation with structured function / tool calling.

Prompt the model with a user request plus the available tool schemas; it emits a

function call. Verify all emitted calls before executing them downstream.

Limitations

  • GGUF quantizations carry unavoidable quality loss relative to the source weights;

prefer Q8_0 when fidelity matters.

  • Inherits every limitation of the source checkpoint

(ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM).

  • Function-calling behaviour is shaped by the 60 schema families in the training set;

performance on out-of-distribution APIs may degrade.

Citation

@misc{qwen3_5_2b_gguf,
  author       = {Ermia Azarkhalili},
  title        = {Qwen3.5-2B — Function Calling (xLAM) — GGUF quantized},
  year         = {2026},
  publisher    = {Hugging Face},
  howpublished = {\url{https://huggingface.co/ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF}}
}

Run ermiaazarkhalili/Qwen3.5-2B-Function-Calling-xLAM-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models