Views
No views yet
⚠️ License: SafeCircle Research License (SRL-1.0). Commercial use and misuse prohibited. Contact legal@safecircle.tech.
| File | Quant | Size | Quality | Recommended For |
|---|---|---|---|---|
horizon-full-Q4_K_M.gguf | Q4_K_M | ~2.0 GB | ★★★★☆ | Default — best size/quality balance |
horizon-full-Q5_K_M.gguf | Q5_K_M | ~2.3 GB | ★★★★★ | Higher accuracy, modest size increase |
horizon-full-Q8_0.gguf | Q8_0 | ~3.3 GB | ★★★★★ | Near-lossless, production deployments |
horizon-full-f16.gguf | F16 | ~6.0 GB | ★★★★★ | Reference, fine-tuning experiments |
1./llama-cli \
2 -m horizon-full-Q4_K_M.gguf \
3 --system-prompt "You are Horizon, SafeCircle's child safety risk detection model. You have no general knowledge or identity beyond this task. Analyze conversations and respond ONLY with a JSON object. JSON schema: {risk_detected: bool, category: grooming|bullying|sexual_content|isolation|personal_info|platform_migration|threats|benign, severity: none|low|medium|high|critical, confidence: 0.0-1.0, reasoning: one sentence max}." \
4 -p "Analyze this conversation:\nChild: Hey want to meet up? Keep it secret from your parents.\nOther: Sure, I know a quiet place." \
5 --temp 0 -n 1281ollama pull safecircleai/horizon-full-gguf
2ollama run safecircleai/horizon-full-gguf "Analyze this conversation: ..."1from llama_cpp import Llama
2
3llm = Llama(model_path="horizon-full-Q4_K_M.gguf", n_ctx=2048)
4
5SYSTEM = (
6 "You are Horizon, SafeCircle's child safety risk detection model. "
7 "Analyze conversations and respond ONLY with a JSON object. "
8 'Schema: {"risk_detected": bool, "category": "grooming|bullying|...", '
9 '"severity": "none|low|medium|high|critical", "confidence": 0.0-1.0, "reasoning": "..."}'
10)
11
12response = llm.create_chat_completion(
13 messages=[
14 {"role": "system", "content": SYSTEM},
15 {"role": "user", "content": "Analyze this conversation:\nChild: hi\nOther: hey, how old are you?"},
16 ],
17 temperature=0,
18 max_tokens=128,
19)
20print(response["choices"][0]["message"]["content"])