Tara 1.3 is a tiny experimental AI-engineering tool-call model. It is trained to read a short User: prompt and emit a compact JSON object that either selects a tool or answers with tool: "none".
This release is best treated as a research checkpoint for structured tool-routing experiments, not as a production assistant.
Tara 1.3 was trained as a supervised fine-tuning continuation for AI-engineering tool calls.
Training configuration:
Steps: 300
Block size: 1,024
Batch size: 8
Gradient accumulation: 4
Effective batch size: 32
Learning rate: 5e-5
Warmup steps: 15
Weight decay: 0.01
Loss mask: only the final Assistant response is trained; earlier turns are context
Dataset:
Train examples: 8,945
Eval examples: 777
Mixture: no-tool/chat behavior plus capped tool-call examples
Local Evaluation
The released checkpoint was selected from a small local comparison on 2026-06-24.
The 10-prompt eval covered weather, search, segmentation, model evaluation, SFT training, file inspection, JSON extraction, and no-tool/general responses.
Checkpoint
Valid JSON
Schema OK
Expected Tool Match
checkpoint-100
6/10
5/10
5/10
checkpoint-200
5/10
5/10
5/10
checkpoint-300
5/10
5/10
5/10
checkpoint-100 was selected because it tied the other continued checkpoints on schema correctness and tool selection while producing one more valid JSON output.
Tokenizer validation passed: tool-call JSON tokenizes through the plain BPE vocabulary without old chat/tool special tokens.
Limitations
This is a very small experimental model.
It can emit malformed JSON.
It can choose the right tool but fill arguments with copied or unrelated values.
General tool: "none" responses are unstable.
It is not reliable for autonomous tool execution without validation, repair, and fallback logic.
It should not be used for medical, legal, financial, safety, or other high-stakes decisions.
Suggested Runtime Guardrails
Applications should:
Parse the output with a JSON parser.
Validate the tool name against an allowlist.
Validate required fields for each tool.
Reject or repair malformed JSON.
Require user confirmation before destructive or external actions.
Citation
If you use this model, cite it as:
Aung Ko Myint. Tara 1.3. 2026. Hugging Face model checkpoint.