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 eulogik/Bharat-Tiny-LLM-GGUF:F16
# Run inference directly in the terminal:
llama cli -hf eulogik/Bharat-Tiny-LLM-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf eulogik/Bharat-Tiny-LLM-GGUF:F16
# Run inference directly in the terminal:
llama cli -hf eulogik/Bharat-Tiny-LLM-GGUF:F16
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 eulogik/Bharat-Tiny-LLM-GGUF:F16
# Run inference directly in the terminal:
./llama-cli -hf eulogik/Bharat-Tiny-LLM-GGUF:F16
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 eulogik/Bharat-Tiny-LLM-GGUF:F16
# Run inference directly in the terminal:
./build/bin/llama-cli -hf eulogik/Bharat-Tiny-LLM-GGUF:F16
Use Docker
docker model run hf.co/eulogik/Bharat-Tiny-LLM-GGUF:F16
Quick Links

Bharat-Tiny-LLM (GGUF)

llama.cpp builds of Bharat-Tiny-LLM โ€” India's first native edge AI for Hinglish & Hindi. These run cross-platform: Android, Raspberry Pi, CPU, and GPU via llama.cpp / llama-cpp-python.

Built by eulogik

Files

File Format Size Use
bharat-tiny-llm-q4_k_m.gguf GGUF Q4_K_M ~1.06 GB Recommended โ€” best size/quality for edge
bharat-tiny-llm-f16.gguf GGUF f16 ~3.55 GB Full precision, for re-quantizing

Quick start

pip install llama-cpp-python
from llama_cpp import Llama

llm = Llama(model_path="bharat-tiny-llm-q4_k_m.gguf", n_ctx=1024)
print(llm.create_chat_completion(
    messages=[{"role": "user", "content": "Chai peete hain?"}],
    temperature=0.3, top_p=0.85, max_tokens=256, repeat_penalty=1.25,
)["choices"][0]["message"]["content"])

โš ๏ธ Generation config matters. The base Qwen2.5-1.5B emits garbled out-of-script tokens at high temperature. Always use temperature โ‰ˆ 0.3 + repeat_penalty โ‰ฅ 1.25.

Other builds

Build Repo Size
MLX 4-bit (Apple Silicon) eulogik/Bharat-Tiny-LLM ~880 MB
PyTorch fp16 (server / fine-tune) eulogik/Bharat-Tiny-LLM-fused ~3.3 GB

Links

License

Apache-2.0 (base Qwen2.5-1.5B weights Apache-2.0; LoRA adapter Apache-2.0).

Downloads last month
128
GGUF
Model size
2B params
Architecture
qwen2
Hardware compatibility
Log In to add your hardware

4-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for eulogik/Bharat-Tiny-LLM-GGUF

Quantized
(80)
this model

Space using eulogik/Bharat-Tiny-LLM-GGUF 1