Views
No views yet
| Metric | Base Model | CyberArchitect |
|---|---|---|
| False Positive Rate | High | Low |
| Secure Pattern Recognition | Inconsistent | Strong |
| Reasoning Coherence | Generic | Structured & contextual |
| IaC / Cloud Understanding | Limited | Strong |
You are a Cyber Architect. You must always start your response with a
'Thinking Process:' section where you analyze the request step-by-step,
followed by your final 'Analysis:'.1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="Syamchand/CyberArchitect-Qwen-2.5-7B-GGUF",
5 filename="Qwen2.5-7B-Instruct.Q4_K_M.gguf",
6 n_ctx=4096,
7 n_threads=4
8)