How to use from
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 Dqdung205/qwen-function-calling-model 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 Dqdung205/qwen-function-calling-model to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required
# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for Dqdung205/qwen-function-calling-model to start chatting
Load model with FastModel
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
    model_name="Dqdung205/qwen-function-calling-model",
    max_seq_length=2048,
)
Quick Links

🧠 Qwen Function-Calling (Vietnamese Finetune)

Model này là một phiên bản Qwen-based model được finetune bằng Unsloth
trên dữ liệu hội thoại tiếng Việt có khả năng function-calling từ bộ dữ liệu: 👉 5CD-AI/Vietnamese-Locutusque-function-calling-chatml-gg-translated


🧩 Model Details

  • Base model: Qwen/Qwen2.5-7B-Instruct
  • Finetuning framework: Unsloth
  • Task: Text Generation + Function Calling
  • Language: Vietnamese 🇻🇳
  • Architecture: Decoder-only Transformer (Causal LM)
  • License: MIT
  • Finetuned from: Qwen base model

🚀 How to Use

Inference Example (Transformers)

from transformers import AutoTokenizer, AutoModelForCausalLM

model_id = "dungai/qwen-function-calling"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)

prompt = "Xin chào! Hãy gọi hàm `get_weather` với tham số thành phố là Hà Nội."
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=128)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 2 Ask for provider support