Instructions to use Broikos/bslm-72m-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Broikos/bslm-72m-v1 with 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 Broikos/bslm-72m-v1 # Run inference directly in the terminal: llama cli -hf Broikos/bslm-72m-v1
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Broikos/bslm-72m-v1 # Run inference directly in the terminal: llama cli -hf Broikos/bslm-72m-v1
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 Broikos/bslm-72m-v1 # Run inference directly in the terminal: ./llama-cli -hf Broikos/bslm-72m-v1
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 Broikos/bslm-72m-v1 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Broikos/bslm-72m-v1
Use Docker
docker model run hf.co/Broikos/bslm-72m-v1
- LM Studio
- Jan
- vLLM
How to use Broikos/bslm-72m-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Broikos/bslm-72m-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Broikos/bslm-72m-v1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Broikos/bslm-72m-v1
- Ollama
How to use Broikos/bslm-72m-v1 with Ollama:
ollama run hf.co/Broikos/bslm-72m-v1
- Unsloth Desktop
- Docker Model Runner
How to use Broikos/bslm-72m-v1 with Docker Model Runner:
docker model run hf.co/Broikos/bslm-72m-v1
- Lemonade
How to use Broikos/bslm-72m-v1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Broikos/bslm-72m-v1
Run and chat with the model
lemonade run user.bslm-72m-v1-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
BSLM 72M v1
A small language model built entirely from scratch: no pretrained weights, no Hugging Face base model, no distillation. Every parameter starts from random init and is trained on a corpus the project generates itself. It is a bilingual (English and Greek) everyday assistant that understands a fixed task list and then performs the tasks by calling tools, rather than trying to memorise facts.
- Params: 72.6 M (Llama-shaped decoder)
- This file:
bslm-72m-v1-q8.gguf, 78 MB, Q8_0 - Runtime: llama.cpp on CPU (4 threads is enough)
- Design: a plain-text loop. The model owns Plan / Act / Judge / Ask / Deliver lines; the environment runs the real tool and writes the Result. Generation stops before any result, because results come from the environment, never the model.
What it can do
Weather (live), web look-ups with a read-and-check step, timers, alarms, reminders, lists, notes, a calendar, smart lights and switches, music search, maths and unit conversions, and honest "I could not confirm that" when a look-up does not support the answer.
Honest results
- ~91% overall on a held-out task set; 94% on a scenario test driven through the app.
- Facts sit around 70%: that is the size ceiling of a 72M model, shown by a sweep, not a bug.
- A coded delivery check catches most wrong extractions; a small number of hallucinations still get through (e.g. inventing a value instead of declining).
Do not judge it as a general chat LLM. It is a from-scratch, tool-using assistant, and the point is the build and the honesty of the numbers.
Usage
Load the GGUF in llama.cpp or LM Studio. It expects the loop protocol described in
the repository (the runtime in bslm/agent.py does the turn-taking and runs the
tools). See the code and the full reports:
- Code, process and benchmarks: https://github.com/Broikos-Nikos/bslm
AGENT_BENCHMARK.md,WEB_TEST.md,PROCESS.md,OWN_MODEL.mdin that repo.
Provenance and license
Trained on a self-generated corpus plus real tool results, from random initialisation. No pretrained weights were used. Released under the MIT license.
- Downloads last month
- -
We're not able to determine the quantization variants.