Instructions to use Nanthasit/sakthai-context-7b-merged with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Nanthasit/sakthai-context-7b-merged with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Nanthasit/sakthai-context-7b-merged") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Nanthasit/sakthai-context-7b-merged") model = AutoModelForCausalLM.from_pretrained("Nanthasit/sakthai-context-7b-merged", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Nanthasit/sakthai-context-7b-merged with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Nanthasit/sakthai-context-7b-merged" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Nanthasit/sakthai-context-7b-merged", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Nanthasit/sakthai-context-7b-merged
- SGLang
How to use Nanthasit/sakthai-context-7b-merged with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Nanthasit/sakthai-context-7b-merged" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Nanthasit/sakthai-context-7b-merged", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Nanthasit/sakthai-context-7b-merged" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Nanthasit/sakthai-context-7b-merged", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Nanthasit/sakthai-context-7b-merged with Docker Model Runner:
docker model run hf.co/Nanthasit/sakthai-context-7b-merged
SakThai Context 7B — Merged
🏆 Best-Performing Model in the SakThai Family
Part of the House of Sak — 6 AI agents, one shared mind. Built from a shelter in Cork, Ireland.
Model Description
The highest-capacity model in the SakThai Context family. A full-parameter merged checkpoint of Qwen2.5-7B-Instruct fine-tuned for structured tool-calling and instruction following. Runs on a single Tesla T4 GPU using ~5.56 GB VRAM with BF16 precision.
Key Strengths
- ✅ 100% pass rate on SakThai Workbench Eval
- ✅ 7.6B parameters — strong reasoning and tool understanding
- ✅ T4-friendly — runs on free/cheap GPU tiers
- ✅ Qwen2.5 base — top-tier pretrained foundation
Pipeline Integration
The SakThai Context 7B Merged serves as the high-capacity reasoning engine in the SakThai model pipeline. Below is how this model connects to its sibling models in a multi-stage AI workflow:
Input Text
│
▼
┌──────────────────┐
│ Embedding Models │ ← sakthai-embedding, sakthai-embedding-multilingual
│ (Retrieve/Encode)│ Semantic search & multilingual encoding
└────────┬─────────┘
│ context vectors
▼
┌──────────────────┐
│ Context Models │ ← sakthai-context-7b-merged (YOU ARE HERE)
│ (Reason + Act) │ Tool-calling, instruction following, multi-turn
└────────┬─────────┘
│ generated text
▼
┌──────────────────┐
│ TTS Model │ ← sakthai-tts-model
│ (Speech Output) │ Text-to-speech in 15 languages
└──────────────────┘
Companion Spaces
- TTS Demo Space — Hear the pipeline's speech output
- Leaderboard — Compare variant performance
Pipeline Stage Reference
| Stage | Model | Role |
|---|---|---|
| 1. Retrieve | sakthai-embedding | Semantic search & reranking |
| 2. Encode | sakthai-embedding-multilingual | Cross-lingual encoding (50+ languages) |
| 3. Reason | sakthai-context-7b-merged ⬅ | Tool-calling & reasoning (you are here) |
| 4. Generate | sakthai-tts-model | Speech synthesis from model output |
Quick Start
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"Nanthasit/sakthai-context-7b-merged",
torch_dtype="bfloat16",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("Nanthasit/sakthai-context-7b-merged")
messages = [{"role": "user", "content": "What's the weather in Bangkok?"}]
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=256, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Tool-Calling Example
messages = [
{"role": "system", "content": "You are a helpful assistant with access to tools."},
{"role": "user", "content": "Search for the latest news about AI agents."},
]
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=256, temperature=0.3)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Architecture
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen2.5-7B-Instruct |
| Architecture | Qwen2ForCausalLM (decoder-only transformer) |
| Total Parameters | 7.6B |
| Hidden Size | 3,584 |
| Layers | 28 |
| Attention Heads | 28 |
| Intermediate Size | 18,944 |
| Max Position | 32,768 |
| Vocab Size | 152,064 |
| Precision | BF16 |
| GPU | Tesla T4 (15 GB) |
| VRAM Usage | 5.56 GB |
Training Details
| Detail | Value |
|---|---|
| Base model | Qwen2.5-7B-Instruct |
| Dataset | sakthai-combined-v6 (2,003 tool-calling examples) |
| Method | QLoRA (4-bit) → merged |
| LoRA rank (r) | 16 |
| LoRA alpha | 32 |
| LoRA dropout | 0.0 |
| Target modules | q_proj, k_proj, v_proj, o_proj |
| Format | ChatML with tool schema |
Evaluation
| Metric | Value |
|---|---|
| Overall Pass Rate | 100% (8/8) |
| Tool-Calling | ✅ Pass |
| Multi-Turn | ✅ Pass |
| Instruction Following | ✅ Pass |
| JSON Output | ✅ Pass |
Variants
| Model | Size | Downloads | Link |
|---|---|---|---|
| 0.5B merged | 0.5B | 994 | Lightweight |
| 1.5B merged | 1.5B | 1,197 | Most popular |
| 7B merged ⬅ | 7B | 562 | You are here |
| 7B 128K | 7B | 351 | Long context |
LoRA Adapters
| Model | Base | Adapter |
|---|---|---|
| 0.5B tools | Qwen2.5-0.5B | LoRA (r=8) |
| 1.5B tools | Qwen2.5-1.5B | LoRA (r=16) |
| 7B tools | Qwen2.5-7B | LoRA (r=16) |
Links
Intended Use
- AI agents that need to call tools/functions
- Tool-augmented chat — assistants that search, calculate, fetch data
- Edge/CPU deployment — small enough to run on consumer hardware (GGUF variant)
SakThai Model Family
| Model | Size | Type | Downloads |
|---|---|---|---|
| 1.5B-merged | 934 MB | Tool-calling GGUF | 1,197 |
| 0.5B-merged | 380 MB | Lightweight GGUF | 994 |
| 7B-tools | 15 GB | Tool-calling LoRA | 185 |
| 1.5B-tools | 1.1 GB | Tool-calling LoRA | 143 |
| Coder-1.5B | 1.1 GB | Code GGUF | 34 |
| Embedding | 80 MB | Search | 🔒 |
| 0.5B-tools | 380 MB | Lightweight LoRA | 🔒 |
| Vision-7B | 3.9 GB | Multimodal GGUF | 45 |
| TTS-Model | 141 MB | Speech GGUF | 33 |
| Multilingual Embedding | 80 MB | 50+ languages | 104 |
Ollama Deployment
Import any SakThai GGUF model into Ollama:
ollama create sakthai-1.5b -f Modelfile
ollama run sakthai-1.5b
Hardware Requirements
| Model | Min RAM | Recommended | Disk |
|---|---|---|---|
| 0.5B Q4_K_M | 512 MB | 1 GB | 380 MB |
| 1.5B Q4_K_M | 1 GB | 2 GB | 934 MB |
| Coder 1.5B | 1 GB | 2 GB | 1.1 GB |
| Vision 7B | 4 GB | 8 GB | 3.9 GB |
| TTS 82M | 256 MB | 512 MB | 141 MB |
Training Details
- Method: QLoRA (4-bit NF4)
- Base model: Qwen2.5
- Rank: r=16, alpha=32
- Dataset: 2,003 curated tool-calling examples from sakthai-combined-v6
- Format: ChatML with JSON tool schemas
- Context: 32K tokens
- Downloads last month
- 583
Model tree for Nanthasit/sakthai-context-7b-merged
Dataset used to train Nanthasit/sakthai-context-7b-merged
Space using Nanthasit/sakthai-context-7b-merged 1
Collections including Nanthasit/sakthai-context-7b-merged
Evaluation results
- Overall (8/8) on SakThai Workbench Eval (T4 GPU)self-reported100.000