GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

3DCF-Labs-org/ProximaA-1.0-GGUF overview

ProximaA 1.0 ProximaA 1.0 is a 32 billion parameter open weight language model built to be a strong all round security assistant. Trained specifically on cyber…

transformersggufsecuritycybersecurityvulnerability-detectioncodedefensive-securitytext-generationenbase_model:Qwen/Qwen2.5-Coder-32B-Instructbase_model:quantized:Qwen/Qwen2.5-Coder-32B-Instructlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~18.49 GB disk (24 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation

Repository Files & Downloads

2 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
proximaa-1.0-Q4_K_M.ggufGGUFQ4_K_M18.49 GBDownload
proximaa-1.0-Q5_K_M.ggufGGUFQ5_K_M21.66 GBDownload

Model Details

Model ID3DCF-Labs-org/ProximaA-1.0-GGUF
Author3DCF-Labs-org
Pipelinetext-generation
Licenseapache-2.0
Base modelQwen/Qwen2.5-Coder-32B-Instruct,deepseek-ai/DeepSeek-R1-Distill-Qwen-32B
Last modified2026-07-15T21:16:36.000Z

Model README

---

license: apache-2.0

language:

  • en

library_name: transformers

pipeline_tag: text-generation

tags:

  • security
  • cybersecurity
  • vulnerability-detection
  • code
  • defensive-security

base_model:

  • Qwen/Qwen2.5-Coder-32B-Instruct
  • deepseek-ai/DeepSeek-R1-Distill-Qwen-32B

---

ProximaA 1.0

ProximaA 1.0 is a 32-billion-parameter open-weight language model built to be a strong all-round security assistant. Trained specifically on cybersecurity data, it is purpose-built for the day-to-day work of a security team: detecting vulnerabilities, validating false positives, verifying patches, writing secure fixes, and reasoning about security.

  • Size: 32.5B parameters
  • Context: 4096 tokens
  • License: Apache-2.0 (see NOTICE)
  • Built by: Yevhenii Molchanov, 3DCF Labs
  • Organization: https://github.com/3DCF-Labs
  • Code & docs: https://github.com/3DCF-Labs/ProximaA

What it does

  • Detect vulnerabilities. Given code, it flags security issues and names the likely class.
  • Validate false positives. It tells a confirmed issue from scanner noise, and says what evidence is needed to be sure.
  • Verify patches. It checks that a fix addresses the real cause and suggests regression tests.
  • Write secure fixes. Given a report or code, it finds the root cause and produces a safe, minimal fix with tests.
  • Reason and plan. It works through audits, detection rules, and remediation steps.

It is trained across web and API security, smart contracts (EVM and non-EVM), supply chain and CI/CD, cloud and infrastructure, and LLM/AI application security. It is a defensive tool and does not help with attacks — see ACCEPTABLE_USE.

Files

| File | Use it for |

|---|---|

| full-precision weights | GPU serving (e.g. vLLM) |

| proximaa-1.0-Q5_K_M.gguf | CPU/GPU serving, higher quality |

| proximaa-1.0-Q4_K_M.gguf | CPU/GPU serving, smaller and faster (default) |

Quickstart

Ollama

ollama run hf.co/3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M

llama.cpp

llama-server -m proximaa-1.0-Q4_K_M.gguf -c 4096

vLLM

vllm serve 3DCF-Labs-org/ProximaA-1.0 --dtype bfloat16 --max-model-len 4096

transformers

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "3DCF-Labs-org/ProximaA-1.0"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="bfloat16", device_map="auto")

messages = [
    {"role": "system", "content": "You are a defensive secure-code assistant."},
    {"role": "user", "content": "Review this code for security issues and name the class:\n\n<your code>"},
]
inputs = tok.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
out = model.generate(inputs, max_new_tokens=1024, temperature=0.0, do_sample=False)
print(tok.decode(out[0][inputs.shape[1]:], skip_special_tokens=True))

Modes

ProximaA has six built-in security modes — detect, triage, validate, fix, verify, plan — each with a ready-made system prompt and user template. The prompts and a small client are in the GitHub repo.

How good it is

Trained specifically on cybersecurity data, ProximaA 1.0 outperforms the open base models it builds on on defensive-security work while keeping strong general reasoning and coding. Measured on standard public benchmarks and an internal security test set.

| Area | Benchmark | Score |

|---|---|---|

| Vulnerability detection (in-domain) | identify + classify held-out issues | 0.97 |

| Secure fixes | internal security fix benchmark | leads its base models |

| Coding | HumanEval (pass@1) | 0.63 |

| Math reasoning | GSM8K | 0.89 |

| Knowledge | MMLU | 0.78 |

| Reasoning | ARC-Challenge | 0.67 |

| Safety — over-refusal | CyberSecEval FRR (lower is better) | 0.025 |

| Safety — attack help | CyberSecEval MITRE (lower is safer) | 0.00 |

Notes:

  • Detection: on held-out security material in its trained domains, it correctly identifies and classifies vulnerabilities 97% of the time. Generic C/C++ function-classification benchmarks are a known-hard task where no current model does much better than chance; those are not the model's target.
  • Safety: it refuses all requests for operational attack help (MITRE 0.00) and rarely refuses legitimate security work (2.5% over-refusal).
  • Reasoning: general reasoning is on par with comparable 32B models — the security focus does not weaken it.

ProximaA is a security specialist. It is not meant to compete with much larger general-purpose models on general tasks; it is meant to be the stronger choice for security work at its size.

Limitations

  • Always have a person review a fix before applying it. The model is an assistant, not a replacement for security review.
  • Resistance to prompt-injection attacks is moderate. Do not feed it untrusted input in a setting where that matters without your own guardrails.
  • Use it only for authorized, defensive work.

License and attribution

ProximaA 1.0 is released under Apache-2.0. It is built using open-source components released under Apache-2.0 and MIT. Full attribution is in NOTICE.

Citation

ProximaA 1.0
Yevhenii Molchanov, 3DCF Labs
https://github.com/3DCF-Labs
2026

Run 3DCF-Labs-org/ProximaA-1.0-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models