Views
No views yet
1# llama.cpp CLI
2./llama-cli -m smart-review-v1-q4_k_m.gguf -p "Review this code:"1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="Aetherum12/aetherum-smart-review-v1-q4",
5 filename="smart-review-v1-q4_k_m.gguf",
6)
7output = llm("Review this code:", max_tokens=256)
8print(output["choices"][0]["text"])| Format | Quant | Notes |
|---|---|---|
| Q4_K_M | 4-bit | Best quality/size trade-off |