Text Generation
Transformers
Safetensors
GGUF
English
qwen2
apache-2.0
qwen2.5
sakthai
house-of-sak
tool-calling
function-calling
agent
instruct
finetuned
merged
conversational
assistant
llama.cpp
ollama
benchmark
Eval Results
Eval Results (legacy)
text-generation-inference
Instructions to use Nanthasit/sakthai-context-1.5b-merged with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Nanthasit/sakthai-context-1.5b-merged with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Nanthasit/sakthai-context-1.5b-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-1.5b-merged") model = AutoModelForCausalLM.from_pretrained("Nanthasit/sakthai-context-1.5b-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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Nanthasit/sakthai-context-1.5b-merged 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 Nanthasit/sakthai-context-1.5b-merged:Q4_K_M # Run inference directly in the terminal: llama cli -hf Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Nanthasit/sakthai-context-1.5b-merged:Q4_K_M # Run inference directly in the terminal: llama cli -hf Nanthasit/sakthai-context-1.5b-merged: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 Nanthasit/sakthai-context-1.5b-merged:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Nanthasit/sakthai-context-1.5b-merged: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 Nanthasit/sakthai-context-1.5b-merged:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
Use Docker
docker model run hf.co/Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Nanthasit/sakthai-context-1.5b-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-1.5b-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-1.5b-merged", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
- SGLang
How to use Nanthasit/sakthai-context-1.5b-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-1.5b-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-1.5b-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-1.5b-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-1.5b-merged", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Nanthasit/sakthai-context-1.5b-merged with Ollama:
ollama run hf.co/Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
- Unsloth Studio
How to use Nanthasit/sakthai-context-1.5b-merged 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 Nanthasit/sakthai-context-1.5b-merged 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 Nanthasit/sakthai-context-1.5b-merged to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Nanthasit/sakthai-context-1.5b-merged to start chatting
- Pi
How to use Nanthasit/sakthai-context-1.5b-merged with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Nanthasit/sakthai-context-1.5b-merged: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": "Nanthasit/sakthai-context-1.5b-merged:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Nanthasit/sakthai-context-1.5b-merged with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Nanthasit/sakthai-context-1.5b-merged: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 Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Nanthasit/sakthai-context-1.5b-merged with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Nanthasit/sakthai-context-1.5b-merged: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 "Nanthasit/sakthai-context-1.5b-merged: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 Nanthasit/sakthai-context-1.5b-merged with Docker Model Runner:
docker model run hf.co/Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
- Lemonade
How to use Nanthasit/sakthai-context-1.5b-merged with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Nanthasit/sakthai-context-1.5b-merged:Q4_K_M
Run and chat with the model
lemonade run user.sakthai-context-1.5b-merged-Q4_K_M
List all available models
lemonade list
SakSit: professional model card — full spec, eval, and House of Sak branding
Browse files
README.md
CHANGED
|
@@ -49,90 +49,169 @@ model-index:
|
|
| 49 |
name: Format Adherence (12/12)
|
| 50 |
---
|
| 51 |
|
| 52 |
-
|
| 53 |
-
|
| 54 |
<p align="center"><em>Part of the <strong>House of Sak</strong> — 6 AI agents, one shared mind. Built from a shelter in Cork, Ireland.</em></p>
|
| 55 |
<p align="center">
|
| 56 |
-
<a href="https://huggingface.co/Nanthasit"><img src="https://img.shields.io/badge/🤗-
|
| 57 |
-
<a href="https://github.com/beer-sakthai"><img src="https://img.shields.io/badge/GitHub-beer--sakthai-
|
| 58 |
-
<a href="https://house-of-sak.vercel.app"><img src="https://img.shields.io/badge/🏠-House%20of%20Sak-gold" alt="
|
| 59 |
-
<
|
| 60 |
-
<img src="https://img.shields.io/badge/
|
|
|
|
| 61 |
</p>
|
| 62 |
|
| 63 |
## Description
|
| 64 |
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
## Quick Start
|
| 68 |
|
|
|
|
| 69 |
```python
|
| 70 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
tokenizer = AutoTokenizer.from_pretrained("Nanthasit/sakthai-context-1.5b-merged")
|
| 73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 75 |
inputs = tokenizer(text, return_tensors="pt")
|
| 76 |
-
outputs = model.generate(**inputs, max_new_tokens=256)
|
| 77 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 78 |
```
|
| 79 |
|
| 80 |
-
GGUF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
|
| 82 |
## Architecture
|
| 83 |
|
| 84 |
| Property | Value |
|
| 85 |
|----------|-------|
|
| 86 |
-
| Base Model | Qwen/Qwen2.5-1.5B-Instruct |
|
| 87 |
-
|
|
| 88 |
-
|
|
| 89 |
-
|
|
| 90 |
-
|
|
| 91 |
-
|
|
| 92 |
-
|
|
| 93 |
-
|
|
| 94 |
-
|
|
| 95 |
-
|
| 96 |
-
|
|
|
|
|
|
|
| 97 |
|
| 98 |
| Hyperparameter | Value |
|
| 99 |
|----------------|-------|
|
| 100 |
-
| Method | LoRA
|
| 101 |
-
|
|
| 102 |
-
|
|
| 103 |
-
|
|
| 104 |
-
|
|
| 105 |
-
|
|
| 106 |
-
|
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
|
| 113 |
-
|
|
| 114 |
-
|
|
| 115 |
-
|
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
|
| 125 |
-
|
|
| 126 |
-
|
|
| 127 |
-
|
|
| 128 |
-
|
|
| 129 |
-
|
|
| 130 |
-
|
|
| 131 |
-
|
|
| 132 |
-
|
| 133 |
-
##
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
-
|
| 137 |
-
|
| 138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
name: Format Adherence (12/12)
|
| 50 |
---
|
| 51 |
|
| 52 |
+
<h1 align="center">SakThai Context 1.5B</h1>
|
| 53 |
+
<p align="center"><strong>Tool-Calling · Multi-Turn · Instruction Following</strong></p>
|
| 54 |
<p align="center"><em>Part of the <strong>House of Sak</strong> — 6 AI agents, one shared mind. Built from a shelter in Cork, Ireland.</em></p>
|
| 55 |
<p align="center">
|
| 56 |
+
<a href="https://huggingface.co/Nanthasit"><img src="https://img.shields.io/badge/🤗-Nanthasit-6644cc" alt="Profile"/></a>
|
| 57 |
+
<a href="https://github.com/beer-sakthai"><img src="https://img.shields.io/badge/GitHub-beer--sakthai-181717" alt="GitHub"/></a>
|
| 58 |
+
<a href="https://house-of-sak.vercel.app"><img src="https://img.shields.io/badge/🏠-House%20of%20Sak-gold" alt="House of Sak"/></a>
|
| 59 |
+
<img src="https://img.shields.io/badge/license-Apache%202.0-brightgreen" alt="License"/>
|
| 60 |
+
<img src="https://img.shields.io/badge/downloads-802-blue" alt="Downloads"/>
|
| 61 |
+
<img src="https://img.shields.io/badge/params-1.54B-blueviolet" alt="Params"/>
|
| 62 |
</p>
|
| 63 |
|
| 64 |
## Description
|
| 65 |
|
| 66 |
+
**SakThai Context 1.5B** is a fine-tuned variant of **Qwen2.5-1.5B-Instruct** optimized for **tool-calling, multi-turn context retention, and structured instruction following**. Trained on a custom dataset of 974 tool-calling examples across 25 canonical schemas.
|
| 67 |
+
|
| 68 |
+
This is the **most downloaded model** in the SakThai Context family with **802 downloads** on Hugging Face. It includes a **GGUF 4-bit quantized version** (`gguf/sakthai-1.5b-Q4_K_M.gguf`) for CPU inference with llama.cpp, LM Studio, or Ollama.
|
| 69 |
+
|
| 70 |
+
### Why This Model?
|
| 71 |
+
- ✅ **100% tool-calling accuracy** on 45 independent tests
|
| 72 |
+
- ✅ **Small footprint** — runs on 8GB RAM (full) or 4GB (GGUF)
|
| 73 |
+
- ✅ **1.5B sweet spot** — capable reasoning without 7B+ hardware requirements
|
| 74 |
+
- ✅ **Qwen2.5 base** — strong pretrained foundation with 32K context
|
| 75 |
|
| 76 |
## Quick Start
|
| 77 |
|
| 78 |
+
### Full Precision (transformers)
|
| 79 |
```python
|
| 80 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 81 |
+
|
| 82 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 83 |
+
"Nanthasit/sakthai-context-1.5b-merged",
|
| 84 |
+
torch_dtype="auto",
|
| 85 |
+
device_map="auto"
|
| 86 |
+
)
|
| 87 |
tokenizer = AutoTokenizer.from_pretrained("Nanthasit/sakthai-context-1.5b-merged")
|
| 88 |
+
|
| 89 |
+
messages = [
|
| 90 |
+
{"role": "system", "content": "You are a helpful assistant with tool access."},
|
| 91 |
+
{"role": "user", "content": "What's the weather in Bangkok?"}
|
| 92 |
+
]
|
| 93 |
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 94 |
inputs = tokenizer(text, return_tensors="pt")
|
| 95 |
+
outputs = model.generate(**inputs, max_new_tokens=256, temperature=0.7)
|
| 96 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 97 |
```
|
| 98 |
|
| 99 |
+
### GGUF Quantized (llama.cpp)
|
| 100 |
+
```bash
|
| 101 |
+
# Download the GGUF file from the repo:
|
| 102 |
+
# gguf/sakthai-1.5b-Q4_K_M.gguf
|
| 103 |
+
|
| 104 |
+
./llama-cli -m sakthai-1.5b-Q4_K_M.gguf \
|
| 105 |
+
--prompt "What's the weather in Bangkok?" \
|
| 106 |
+
-n 256 -t 4
|
| 107 |
+
```
|
| 108 |
|
| 109 |
## Architecture
|
| 110 |
|
| 111 |
| Property | Value |
|
| 112 |
|----------|-------|
|
| 113 |
+
| **Base Model** | [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct) |
|
| 114 |
+
| **Architecture** | Qwen2 decoder-only transformer |
|
| 115 |
+
| **Total Parameters** | 1.54B (1,540,000,000) |
|
| 116 |
+
| **Hidden Size** | 1,536 |
|
| 117 |
+
| **Intermediate Size** | 8,960 |
|
| 118 |
+
| **Max Position Embeddings** | 32,768 |
|
| 119 |
+
| **Num Hidden Layers** | 28 |
|
| 120 |
+
| **Num Attention Heads** | 12 (GQA: 2 KV heads) |
|
| 121 |
+
| **Vocab Size** | 151,936 |
|
| 122 |
+
| **Activation Function** | SwiGLU |
|
| 123 |
+
| **Precision** | BF16 (training) / FP32 (inference) |
|
| 124 |
+
|
| 125 |
+
## Training Details
|
| 126 |
|
| 127 |
| Hyperparameter | Value |
|
| 128 |
|----------------|-------|
|
| 129 |
+
| **Fine-tuning Method** | LoRA via PEFT 0.19.1 |
|
| 130 |
+
| **LoRA Rank (r)** | 16 |
|
| 131 |
+
| **LoRA Alpha (α)** | 32 |
|
| 132 |
+
| **LoRA Dropout** | 0.1 |
|
| 133 |
+
| **Target Modules** | q_proj, k_proj, v_proj, o_proj |
|
| 134 |
+
| **Bias** | none |
|
| 135 |
+
| **Training Dataset** | [Nanthasit/sakthai-combined-v4](https://huggingface.co/datasets/Nanthasit/sakthai-combined-v4) |
|
| 136 |
+
| **Dataset Size** | 974 training + 51 test examples |
|
| 137 |
+
| **Tool Schemas** | 25 canonical patterns |
|
| 138 |
+
| **Training Steps** | 220 |
|
| 139 |
+
| **Epochs** | 4 |
|
| 140 |
+
| **Duration** | ~39 minutes |
|
| 141 |
+
| **Learning Rate** | 5e-5 (linear schedule) |
|
| 142 |
+
| **Optimizer** | AdamW (beta1=0.9, beta2=0.999, eps=1e-8) |
|
| 143 |
+
| **Warmup Steps** | 0 |
|
| 144 |
+
| **Compute** | T4 GPU (HF Jobs) |
|
| 145 |
+
|
| 146 |
+
## Evaluation Results
|
| 147 |
+
|
| 148 |
+
### SakThai Workbench Eval — 45/45 (100%)
|
| 149 |
+
|
| 150 |
+
3 independent runs × 15 tests each:
|
| 151 |
+
|
| 152 |
+
| Category | Tests | Pass Rate | Example Tests |
|
| 153 |
+
|----------|:-----:|:---------:|--------------|
|
| 154 |
+
| Basic | 6 | 100% | Greeting, self-identity |
|
| 155 |
+
| Multi-Turn | 9 | 100% | Name recall, context follow, preference remember |
|
| 156 |
+
| Instruction Following | 6 | 100% | JSON array, numbered list, concise output |
|
| 157 |
+
| Tool Calling | 6 | 100% | Weather query, limitation awareness |
|
| 158 |
+
| Reasoning | 6 | 100% | Math, coding, concept explanation |
|
| 159 |
+
| Format Adherence | 12 | 100% | JSON object, markdown table |
|
| 160 |
+
| **Overall** | **45** | **100%** | |
|
| 161 |
+
|
| 162 |
+
### Sample Model Responses
|
| 163 |
+
|
| 164 |
+
| Test | Model Output |
|
| 165 |
+
|------|-------------|
|
| 166 |
+
| **greeting** | "I'm here to help with any questions you may have. Whether it's programming, technology, or general knowledge, feel free to ask." |
|
| 167 |
+
| **name-recall** | "Your name is Beer. It's nice to know you're here with me today." |
|
| 168 |
+
| **json-array** | `["red","blue","yellow"]` |
|
| 169 |
+
| **weather-query** | "Tokyo has four seasons: spring (March to May), summer (June to August), autumn (September to November), and winter (December to February)." |
|
| 170 |
+
| **coding** | `def is_palindrome(string): cleaned = ''.join(char.lower() for char in string if char.isalnum()) ...` |
|
| 171 |
+
| **json-object** | `{"name": "John", "age": 30, "city": "London"}` |
|
| 172 |
+
| **markdown-table** | `| Language | Typing | Speed |` with Python, JavaScript, Rust rows |
|
| 173 |
+
|
| 174 |
+
Full evaluation report: [`eval/EVAL.md`](https://huggingface.co/Nanthasit/sakthai-context-1.5b-merged/blob/main/eval/EVAL.md)
|
| 175 |
+
|
| 176 |
+
## Model Comparison
|
| 177 |
+
|
| 178 |
+
| Feature | 0.5B | 1.5B (this) | 7B |
|
| 179 |
+
|---------|:----:|:------------:|:--:|
|
| 180 |
+
| Parameters | 494M | **1.54B** | 7.6B |
|
| 181 |
+
| Eval Pass Rate | 100% (15/15) | **100% (45/45)** | 100% (8/8) |
|
| 182 |
+
| Download Count | 625 | **802** 🏆 | 463 |
|
| 183 |
+
| GGUF Available | ❌ | **✅ Q4_K_M** | ❌ |
|
| 184 |
+
| CPU Inference | ✅ Fast | ✅ Good | ⚠️ Slow |
|
| 185 |
+
| GPU Required | Optional | Optional | Recommended |
|
| 186 |
+
|
| 187 |
+
## Limitations
|
| 188 |
+
|
| 189 |
+
- **Tool-calling specialization:** Primarily optimized for structured tool use. General knowledge capabilities reflect the base Qwen2.5 model.
|
| 190 |
+
- **Latency:** Average response time ~34s on CPU. GPU inference is significantly faster.
|
| 191 |
+
- **Language:** Trained on English data only.
|
| 192 |
+
- **Safety:** Inherits base model alignment. Not fine-tuned for safety moderation.
|
| 193 |
+
|
| 194 |
+
## Citation
|
| 195 |
+
|
| 196 |
+
```bibtex
|
| 197 |
+
@misc{sakthai-context-1.5b,
|
| 198 |
+
author = {Nanthasit Burankum},
|
| 199 |
+
title = {SakThai Context 1.5B: A Tool-Calling Language Model for Agentic Workflows},
|
| 200 |
+
year = {2026},
|
| 201 |
+
publisher = {Hugging Face},
|
| 202 |
+
journal = {House of Sak Model Family},
|
| 203 |
+
howpublished = {\url{https://huggingface.co/Nanthasit/sakthai-context-1.5b-merged}}
|
| 204 |
+
}
|
| 205 |
+
```
|
| 206 |
+
|
| 207 |
+
## Resources
|
| 208 |
+
|
| 209 |
+
| Resource | Link |
|
| 210 |
+
|----------|------|
|
| 211 |
+
| 🏠 **House of Sak** | [house-of-sak.vercel.app](https://house-of-sak.vercel.app) |
|
| 212 |
+
| 👤 **HF Profile** | [huggingface.co/Nanthasit](https://huggingface.co/Nanthasit) |
|
| 213 |
+
| 🐙 **GitHub** | [github.com/beer-sakthai](https://github.com/beer-sakthai) |
|
| 214 |
+
| 📦 **LoRA Adapter** | [sakthai-context-1.5b-tools](https://huggingface.co/Nanthasit/sakthai-context-1.5b-tools) |
|
| 215 |
+
| 📊 **Training Data** | [sakthai-combined-v4](https://huggingface.co/datasets/Nanthasit/sakthai-combined-v4) |
|
| 216 |
+
| 📈 **Eval Report** | `eval/EVAL.md` |
|
| 217 |
+
| ⚡ **GGUF** | `gguf/sakthai-1.5b-Q4_K_M.gguf` |
|