This model is a LoRA fine-tune of Qwen3-4B trained to predict bash tool calls from natural language instructions.
The goal of this project was to learn and understand how modern AI tool calling works under the hood by training a language model to map natural language requests into structured tool invocations.
The model predicts bash commands rather than executing them directly.
1<tool_call>
2{"name":"bash","arguments":{"command":"uname -a"}}
3</tool_call>
The dataset contains synthetic bash tool-calling examples generated using Llama 3.2.
Examples are formatted as tool-calling conversations.
This model is not intended for production deployment or unrestricted command execution.