CoolFace
Datasetpublic

Nanthasit/sakthai-combined-v7

SakThai Combined v7 Curated, larger-scale instruction-tuning data for tool-calling, function-calling, and agent-style reasoning in the SakThai model family. Dataset Summary SakThai Combined v7 extends the v6 family with more multi-turn examples, broader tool coverage, and stronger <tool>/function-calling formatting. It is intended for fine-tuning models that should invoke tools naturally, then continue the conversation after tool results. Data Fields… See the full description on the dataset page: https://huggingface.co/datasets/Nanthasit/sakthai-combined-v7.

sourceHugging Facecc-by-4.0updated 2mo agoView on Hugging Face
0likes185downloads
Dataset Card

SakThai Combined v7

![Download Dataset](https://huggingface.co/datasets/Nanthasit/sakthai-combined-v7) ![Downloads](https://huggingface.co/datasets/Nanthasit/sakthai-combined-v7)

Curated, larger-scale instruction-tuning data for tool-calling, function-calling, and agent-style reasoning in the SakThai model family.

Dataset Summary

SakThai Combined v7 extends the v6 family with more multi-turn examples, broader tool coverage, and stronger <tool>/function-calling formatting. It is intended for fine-tuning models that should invoke tools naturally, then continue the conversation after tool results.

Data Fields

FieldTypeDescription
messageslist[dict]Chat turns in OpenAI-style format with roles system, user, assistant, and tool
toolslist[dict]JSON schema definitions of callable tools available in each example
conversationslist[dict]Multi-turn conversation annotations for examples with follow-up tool execution
source_splitstringOrigin source/dataset tag when the example was derived from another split
fingerprintstringContent hash for reproducibility and deduplication

Dataset Structure

  • Config: default
  • Train split: present
  • Test split: present
  • Format: JSONL
  • Language: English, with multilingual assistant turns preserved from source conversations

Splits

SplitFileExamplesApprox. size
traindata/train.jsonl2,000+~4.7 MB
testdata/test.jsonl235~355 KB

Dataset Size

MetricValue
Total repository size~4.7 MB
Train filedata/train.jsonl
Test filedata/test.jsonl
Last modified2026-08-01
Downloads101

Verified Snapshot

PropertyValue
SourceNanthasit/sakthai-combined-v7
FilesREADME.md, data/train.jsonl, data/test.jsonl, load_dataset_demo.ipynb, notebooks/, scripts/
Train bytes4,742,978
Test bytes355,490
Verified bySakThai / HF Hub metadata + file inspection
Last verified2026-08-01

Loading Examples

python
from datasets import load_dataset

ds = load_dataset("Nanthasit/sakthai-combined-v7")
print(ds)
python
from datasets import load_dataset

ds = load_dataset("Nanthasit/sakthai-combined-v7", split="train")
example = ds[0]
print(example["messages"])
print(example["tools"][0]["function"]["name"])
python
from datasets import load_dataset

# inspect test split only
test = load_dataset("Nanthasit/sakthai-combined-v7", split="test")
print(f"Test examples: {len(test)}")
print(test[0]["messages"][-1]["content"])

Streaming / Partial Load

python
from datasets import load_dataset

ds = load_dataset("Nanthasit/sakthai-combined-v7", split="train", streaming=True)
for i, row in enumerate(ds):
    if i >= 1:
        break
    print(row["tools"][0]["function"]["name"])

Dataset Creation

  • Curation: Combined from prior SakThai combined datasets with additional tool-calling and multi-turn coverage.
  • Annotation: examples include expected tool-call formatting and assistant follow-up behavior.
  • Scope: training and evaluation for tool-use instruction tuning.

Use Cases

  • Fine-tuning instruction-following models for function-calling.
  • Evaluating tool-calling format adherence on held-out tools.
  • Agent-style multi-turn conversation training with tool results.

Citation

bibtex
@misc{sakthai-combined-v7,
  title={SakThai Combined v7},
  author={Beer / Nanthasit},
  year={2026},
  url={https://huggingface.co/datasets/Nanthasit/sakthai-combined-v7
}

Evaluation & Community

Results are surfaced in the SakThai Leaderboard.

License

CC BY 4.0

Part of the SakThai Model Family.