Instructions to use 3DCF-Labs-org/ProximaA-1.0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="3DCF-Labs-org/ProximaA-1.0-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("3DCF-Labs-org/ProximaA-1.0-GGUF", device_map="auto") - llama-cpp-python
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="3DCF-Labs-org/ProximaA-1.0-GGUF", filename="proximaa-1.0-Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
Use Docker
docker model run hf.co/3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "3DCF-Labs-org/ProximaA-1.0-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "3DCF-Labs-org/ProximaA-1.0-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
- SGLang
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "3DCF-Labs-org/ProximaA-1.0-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "3DCF-Labs-org/ProximaA-1.0-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "3DCF-Labs-org/ProximaA-1.0-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "3DCF-Labs-org/ProximaA-1.0-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with Ollama:
ollama run hf.co/3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
- Unsloth Studio
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for 3DCF-Labs-org/ProximaA-1.0-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for 3DCF-Labs-org/ProximaA-1.0-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for 3DCF-Labs-org/ProximaA-1.0-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with Docker Model Runner:
docker model run hf.co/3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
- Lemonade
How to use 3DCF-Labs-org/ProximaA-1.0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull 3DCF-Labs-org/ProximaA-1.0-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ProximaA-1.0-GGUF-Q4_K_M
List all available models
lemonade list
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
- Downloads last month
- 170
4-bit
5-bit
Model tree for 3DCF-Labs-org/ProximaA-1.0-GGUF
Base model
Qwen/Qwen2.5-32B