How to use from
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 SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf SLT-AI/SLT-1.5B-GoToSmart: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 SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf SLT-AI/SLT-1.5B-GoToSmart: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 SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
Use Docker
docker model run hf.co/SLT-AI/SLT-1.5B-GoToSmart:Q4_K_M
Quick Links

SLT-1.5B-GoToSmart

A 1.5B parameter conversational model based on Qwen2.5-1.5B.

Training Dataset

The model was fine-tuned on 15,000 high-quality examples.

The dataset includes:

  • Natural conversations in Russian, English and Polish
  • Up-to-date general knowledge (as of 2025-2026)
  • Python coding tasks
  • Mathematics with step-by-step explanations
  • Instruction-following dialogues

How to Use

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_name = "SLT-AI/SLT-1.5B-GoToSmart"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
    model_name, 
    torch_dtype=torch.bfloat16, 
    device_map="auto"
)

messages = [{"role": "user", "content": "Hello! How are you?"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)

outputs = model.generate(
    **inputs, 
    max_new_tokens=512, 
    temperature=0.7, 
    top_p=0.9
)

print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Downloads last month
6
Safetensors
Model size
2B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for SLT-AI/SLT-1.5B-GoToSmart

Quantized
(134)
this model