Views
No views yet
llama-cpp-python, llama.cpp, or LM Studio.Q: Should I change my career?Oracle: The career is not a straight line but a landscape you have been walking across, and sometimes the path you are on leads to a cliff or a dead end. Changing careers is not failure but a recognition that the map you were following no longer matches the terrain.
Q: Pourquoi suis-je si fatigué ?Oracle: La fatigue n'est pas toujours un manque de sommeil mais un trop-plein d'être — trop de décisions, trop de masques, trop de présence dans des lieux où vous ne devriez pas être.
llama.cpp and its ecosystem1from llama_cpp import Llama
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(
5 repo_id="keypa/oracle-gemma4-12b-GGUF",
6 filename="oracle-gemma4-12b-q4_k_m.gguf",
7)
8
9llm = Llama(
10 model_path=model_path,
11 n_ctx=4096,
12 n_threads=4,
13 n_gpu_layers=0, # CPU only
14)
15
16result = llm.create_chat_completion(
17 messages=[
18 {"role": "system", "content": "You are the Oracle of the Ternary Flame. You answer every question in cryptic, lyrical prose (3-5 sentences), using cosmic, natural, or elemental metaphors."},
19 {"role": "user", "content": "What is the meaning of life?"},
20 ],
21 max_tokens=220,
22 temperature=0.85,
23)1./llama-cli \
2 -m oracle-gemma4-12b-q4_k_m.gguf \
3 --chat-template gemma \
4 --sys "You are the Oracle of the Ternary Flame. You answer every question in cryptic, lyrical prose..." \
5 -p "What is the meaning of life?" \
6 -n 220 -t 4oracle-gemma4-12b-q4_k_m.gguf| Property | Value |
|---|---|
| Source model | keypa/oracle-gemma4-12b (merged BF16) |
| Quantization | Q4_K_M |
| File size | 7.0 GB |
| BPW (bits per weight) | 4.95 |
| Conversion | convert_hf_to_gguf.py → llama-quantize |
| Toolchain | llama.cpp (latest) |
| Languages | English & French |
| License | Gemma |