Instructions to use LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth") model = AutoModelForCausalLM.from_pretrained("LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth") 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
- vLLM
How to use LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth
- SGLang
How to use LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth 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 "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth" \ --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": "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth", "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 "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth" \ --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": "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth with Docker Model Runner:
docker model run hf.co/LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth
language:
- en
- ko
library_name: transformers
pipeline_tag: text-generation
tags:
- terminal
- sft
- vllm
- tb2-lite
base_model: LiquidAI/LFM2.5-1.2B-Instruct
LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth
ํฐ๋ฏธ๋ ์์ ์๋ํ๋ฅผ ์ํ Terminal SFT ๋ชจ๋ธ์ ๋๋ค. ์ ๋ ฅ๋ ์์ /์ด์ ํฐ๋ฏธ๋ ์ํ๋ฅผ ๋ณด๊ณ ๋ค์์ ์คํํ ๋ช ๋ น์ JSON ํํ๋ก ์์ฑํ๋ ์ฉ๋๋ก ํ์ตํ์ต๋๋ค.
๋ชจ๋ธ ์์ฝ
- Base model:
LiquidAI/LFM2.5-1.2B-Instruct - Training setup:
2 epochs, Unsloth SFT - Evaluation snapshot:
2026-05-07 22:44:35 UTC - Evaluation result id:
lfm25_1p2b_sft_unsloth_e2
์ฌ์ฉ ๋ฐฉ๋ฒ
Transformers ์์:
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
messages = [
{"role": "system", "content": "You are a terminal automation assistant. Return JSON only."},
{"role": "user", "content": "List the current directory and identify Python files."},
]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=512, do_sample=False)
print(tokenizer.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=False))
vLLM ์์:
from vllm import LLM, SamplingParams
from transformers import AutoTokenizer
model_id = "LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
llm = LLM(model=model_id, dtype="bfloat16", trust_remote_code=True)
messages = [{"role": "user", "content": "Show disk usage for the current folder."}]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
result = llm.generate([prompt], SamplingParams(temperature=0.0, max_tokens=512))
print(result[0].outputs[0].text)
๊ถ์ฅ ์ถ๋ ฅ ํ์:
{
"analysis": "brief reasoning about the next terminal action",
"plan": "short execution plan",
"commands": [
{"keystrokes": "ls -la\n", "duration": 0.1}
],
"task_complete": false
}
ํ๊ฐ ๊ฒฐ๊ณผ
ํ๊ฐ๋ corrected TB2-lite replay set์์ vLLM์ผ๋ก ์ํํ์ต๋๋ค. ์์ ์ ์๋ 100 * avg_command_f1๋ง ์ฌ์ฉํ๊ณ , first_cmd_exact_pct๋ ๋ณด์กฐ ์งํ๋ก๋ง ๋ด
๋๋ค.
- Rank:
36 / 44 - Score:
22.45 - Command F1:
0.2245 - Command precision:
0.3097 - Command recall:
0.2314 - First command exact:
18.8% - Valid JSON:
47.2% - Steps / tasks:
303 / 50 - Template status:
chat_template - Rank eligible:
True - Eval timestamp:
2026-05-07T21:50:36.580647 - ํ์ฌ ์ง๊ณ๋ ํ๊ฐ ๊ฒฐ๊ณผ ์:
44
์ฌํ ๋ช ๋ น ์์:
python tb2_lite/scripts/replay_eval.py \
--model LLM-OS-Models/LFM2.5-1.2B-Terminal-SFT-2Epoch-Unsloth \
--model-short lfm25_1p2b_sft_unsloth_e2 \
--eval-path tb2_lite/data/replay_full.jsonl \
--output-dir /home/work/.data/tb2_lite_eval/corrected_readme_models_vllm \
--dtype bfloat16 \
--max-model-len 49152 \
--max-tokens 1024 \
--temperature 0.0 \
--top-p 1.0 \
--gpu-memory-utilization 0.94 \
--language-model-only
Prompt/template audit:
{
"template_status": "chat_template",
"rank_eligible": true,
"steps": 303,
"tasks": 50
}
์ฅ์
- ํน์ ํฌ๊ธฐ/๊ฐ์ ๊ฒฝ๋ก์์ ๋น์ฉ ๋๋น ๋น ๋ฅธ ์ถ๋ก ์ ๊ธฐ๋ํ ์ ์์ต๋๋ค.
- ์๋ชป๋ ๋ช ๋ น์ ๋ง์ด ๋ด๊ธฐ๋ณด๋ค ๋ณด์์ ์ผ๋ก ๋ง๋ ๋ช ๋ น์ ๋ด๋ ๊ฒฝํฅ์ด ์์ต๋๋ค.
- LFM ๊ณ์ด์ Liquid chat template๊ณผ ํฐ๋ฏธ๋ SFT ํฌ๋งท์ ๋ง์ถ ๊ฒฝ๋/ํจ์จ ์คํ์ ์ ๋ฆฌํฉ๋๋ค.
ํ๊ณ์ ์ฃผ์์ฌํญ
- recall์ด ์๋์ ์ผ๋ก ๋ฎ์ ํ์ํ ๋ช ๋ น ์ผ๋ถ๋ฅผ ๋น ๋จ๋ฆด ์ ์์ต๋๋ค.
- JSON ํ์ ์คํจ๊ฐ ์์ด ์คํ ์ ์ ํ์ฑ ๊ฒ์ฆ/์ฌ์๋๊ฐ ํ์ํฉ๋๋ค.
- Qwen ์์๊ถ ๋๋น command F1์ด ๋ฎ๊ฒ ๋์จ ๊ฒฐ๊ณผ๋ ์ง๋ฅ ์ฐจ์ด์ ํจ๊ป ํฌ๋งท, ํ ํฌ๋์ด์ , ํ์ต ๊ฒฝ๋ก ์ฐจ์ด๊ฐ ์์ธ ๊ฐ์ ๋๋ค.
- ์ด ๋ชจ๋ธ์ ์๋ ํฐ๋ฏธ๋ ์กฐ์ ๋ณด์กฐ์ฉ SFT ๋ชจ๋ธ์ด๋ฉฐ, ์ผ๋ฐ ๋ํ/๋ฒ์ฉ ์ถ๋ก ์ฑ๋ฅ์ ๋ณด์ฅํ์ง ์์ต๋๋ค.
- ์์ฑ ๋ช ๋ น์ ์ค์ ์คํ ์ ์ sandbox, allowlist, human review ๊ฐ์ ์์ ์ฅ์น๋ฅผ ๊ฑฐ์ณ์ผ ํฉ๋๋ค.
ํด์ ๋ฉ๋ชจ
TB2-lite ์ ์๋ ์ผ๋ฐ ์ง๋ฅ ๋ฒค์น๋งํฌ๊ฐ ์๋๋ผ ํฐ๋ฏธ๋ next-action JSON ์ฌํ ๋ฅ๋ ฅ์ ์ธก์ ํฉ๋๋ค. ๋ฐ๋ผ์ ๋ชจ๋ธ ํฌ๊ธฐ, chat template ์ผ์น, assistant-only masking, tokenizer, ํ์ต ๋ฐ์ดํฐ holdout ์ฌ๋ถ๊ฐ ๋ชจ๋ ์ ์์ ์ํฅ์ ์ค๋๋ค.
README.md์ MODEL_EVALUATION_REPORT.md์ ๊ฐ์ด ๋ ์ต์ ์ด๋ฉด ํด๋น ๊ฐ์ ์ฐ์ ํ์ธํ์ธ์. ์ด ๋ชจ๋ธ์นด๋๋ ์๋ฃ๋ ํ๊ฐ JSON์ ๊ธฐ์ค์ผ๋ก ๊ฐ๋ณ ์ ์ฅ์์ ๋น ๋ฅด๊ฒ ๋ฐ์ํ ์ค๋ ์ท์ ๋๋ค.