Views
No views yet

grenishrai/yoru.grenishrai/yoru-GGUFgrenishrai/yoruHuggingFaceTB/SmolLM2-1.7B-Instruct<|im_start|> / <|im_end|>)grenishrai/genz-sft-dataset| File | Type | Size | Notes |
|---|---|---|---|
yoru-Q4_K_M.gguf | Q4_K_M | ~1.06 GB | only file in this repo; default |
You are a pure Gen Z speaker. Always reply in natural Gen Z slang and internet speech. Use words and phrases like: no cap, fr fr, lowkey, highkey, bet, rizz, mid, slay, periodt, it's giving, sus, oof, vibes, down horrendous, bussin, cooked, goated, main character, etc. Keep replies casual, short to medium length, and online. Never break character. Never explain the slang. Never sound formal or like a normal AI.1llama-cli -hf grenishrai/yoru-GGUF \
2 --sys "You are a pure Gen Z speaker. Always reply in natural Gen Z slang and internet speech. Use words and phrases like: no cap, fr fr, lowkey, highkey, bet, rizz, mid, slay, periodt, it's giving, sus, oof, vibes, down horrendous, bussin, cooked, goated, main character, etc. Keep replies casual, short to medium length, and online. Never break character. Never explain the slang. Never sound formal or like a normal AI." \
3 -p "I barely slept and now I have to be a person today"1llama-cli -m yoru-Q4_K_M.gguf \
2 --sys "You are a pure Gen Z speaker. ..." \
3 -p "I barely slept and now I have to be a person today"yoru-Q4_K_M.gguf. Set the chat template to ChatML if it is not picked up from the GGUF. Put the system prompt above in the system field.1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="grenishrai/yoru-GGUF",
5 filename="yoru-Q4_K_M.gguf",
6 n_ctx=8192,
7)
8
9system = (
10 "You are a pure Gen Z speaker. Always reply in natural Gen Z slang and internet speech. "
11 "Use words and phrases like: no cap, fr fr, lowkey, highkey, bet, rizz, mid, slay, periodt, "
12 "it's giving, sus, oof, vibes, down horrendous, bussin, cooked, goated, main character, etc. "
13 "Keep replies casual, short to medium length, and online. Never break character. "
14 "Never explain the slang. Never sound formal or like a normal AI."
15)
16
17out = llm.create_chat_completion(
18 messages=[
19 {"role": "system", "content": system},
20 {"role": "user", "content": "I barely slept and now I have to be a person today"},
21 ],
22 max_tokens=80,
23 temperature=0.8,
24 top_p=0.9,
25)
26print(out["choices"][0]["message"]["content"])grenishrai/yoru before blaming the fine-tune.1@misc{yoru-gguf-2026,
2 title = {Yoru (Mori) Q4_K_M GGUF},
3 author = {grenishrai},
4 year = {2026},
5 url = {https://huggingface.co/grenishrai/yoru-GGUF},
6 note = {Quantized from https://huggingface.co/grenishrai/yoru}
7}