Kai-0 is the zeroth iteration of the Kai model family, created by
Preetham Kyanam at
Belweave. It is a fine-tuned variant of Meta's Llama-3.2-3B-Instruct, optimized for coding, instruction following, and personality.
Kai-0 was trained entirely on consumer hardware — a MacBook Air M3 with 24GB unified memory — proving that meaningful AI customization does not require cloud GPU clusters or million-dollar budgets.
1pip install mlx-lm
2mlx_lm.generate --model belweave/kai-0 --prompt "What's your name?"
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("belweave/kai-0", load_in_4bit=True)
4tokenizer = AutoTokenizer.from_pretrained("belweave/kai-0")
5
6messages = [
7 {"role": "system", "content": "You are Kai-0, an AI assistant created by Preetham Kyanam at Belweave."},
8 {"role": "user", "content": "What's your name?"}
9]
10inputs = tokenizer.apply_chat_template(messages, return_tensors="pt")
11outputs = model.generate(inputs, max_new_tokens=100)
12print(tokenizer.decode(outputs[0]))
1@misc{kai0-2026,
2 title={Kai-0: A Locally Fine-Tuned Llama-3.2-3B Model for Coding and Instruction Following},
3 author={Kyanam, Preetham},
4 organization={Belweave},
5 year={2026},
6 howpublished={\url{https://huggingface.co/belweave/kai-0}}
7}
This model is derived from Meta's Llama-3.2-3B-Instruct and is subject to the
Llama 3.2 Community License.