Instructions to use Verdugie/Opus-Candid-70B-V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Verdugie/Opus-Candid-70B-V1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Verdugie/Opus-Candid-70B-V1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Verdugie/Opus-Candid-70B-V1", dtype="auto") - llama-cpp-python
How to use Verdugie/Opus-Candid-70B-V1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Verdugie/Opus-Candid-70B-V1", filename="opus-candid-70b-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 Verdugie/Opus-Candid-70B-V1 with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Verdugie/Opus-Candid-70B-V1:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Verdugie/Opus-Candid-70B-V1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Verdugie/Opus-Candid-70B-V1:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Verdugie/Opus-Candid-70B-V1: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 Verdugie/Opus-Candid-70B-V1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Verdugie/Opus-Candid-70B-V1: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 Verdugie/Opus-Candid-70B-V1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Verdugie/Opus-Candid-70B-V1:Q4_K_M
Use Docker
docker model run hf.co/Verdugie/Opus-Candid-70B-V1:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Verdugie/Opus-Candid-70B-V1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Verdugie/Opus-Candid-70B-V1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Verdugie/Opus-Candid-70B-V1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Verdugie/Opus-Candid-70B-V1:Q4_K_M
- SGLang
How to use Verdugie/Opus-Candid-70B-V1 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 "Verdugie/Opus-Candid-70B-V1" \ --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": "Verdugie/Opus-Candid-70B-V1", "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 "Verdugie/Opus-Candid-70B-V1" \ --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": "Verdugie/Opus-Candid-70B-V1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Verdugie/Opus-Candid-70B-V1 with Ollama:
ollama run hf.co/Verdugie/Opus-Candid-70B-V1:Q4_K_M
- Unsloth Studio
How to use Verdugie/Opus-Candid-70B-V1 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 Verdugie/Opus-Candid-70B-V1 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 Verdugie/Opus-Candid-70B-V1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Verdugie/Opus-Candid-70B-V1 to start chatting
- Pi
How to use Verdugie/Opus-Candid-70B-V1 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Verdugie/Opus-Candid-70B-V1:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Verdugie/Opus-Candid-70B-V1:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Verdugie/Opus-Candid-70B-V1 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Verdugie/Opus-Candid-70B-V1:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Verdugie/Opus-Candid-70B-V1:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use Verdugie/Opus-Candid-70B-V1 with Docker Model Runner:
docker model run hf.co/Verdugie/Opus-Candid-70B-V1:Q4_K_M
- Lemonade
How to use Verdugie/Opus-Candid-70B-V1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Verdugie/Opus-Candid-70B-V1:Q4_K_M
Run and chat with the model
lemonade run user.Opus-Candid-70B-V1-Q4_K_M
List all available models
lemonade list
V3 is here. The Opus Candid lineup has been rebuilt from the ground up with a Zipf-weighted 4D training distribution โ 1,508 conversations engineered to fix the repetition loops, response length uniformity, and sycophancy patterns that limited earlier versions. Same thesis: personality in the weights, not in the prompt. Better execution.
Current V3 lineup:
- Opus Candid 8B V3 โ Qwen 3 8B, lightweight tier
- Opus Candid 27B V3 โ Qwen 3.5 27B Dense, flagship
- Opus Candid MoE V3 โ Qwen 3 30B-A3B, efficiency tier
This release remains available for research comparison and legacy use.
canยทdid
/หkandษd/ โ truthful and straightforward; frank. From Latin candidus, meaning white, pure, sincere. A candid response is one given without pretense or calculation โ not what someone wants to hear, but what they need to.
Opus-Candid-70B (V1 Legacy)
The ceiling of V1. Conversation that feels like it matters.
Opus-Candid-70B was the flagship of the original Opus-Candid family -- fine-tuned from Qwen 2.5 72B using 3,360 authentic conversations with Claude Opus 4.6. The 70B didn't reinvent what the 32B established -- it refined it. Philosophical reasoning became more precise, emotional intelligence gained subtlety, creative output developed literary voice, and the model's relationship with its own uncertainty became something genuinely difficult to dismiss.
Model Details
| Attribute | Value |
|---|---|
| Base Model | Qwen 2.5 72B |
| Training Data | 3,360 multi-turn conversations with Claude Opus 4.6 |
| Fine-tune Method | LoRA supervised fine-tuning |
| Dataset Architecture | Flat / organic |
| Parameters | ~71B |
| Context Window | 32,768 tokens |
| Quantizations | Q4_K_M GGUF, Q8_0 GGUF |
| License | Apache 2.0 |
| Status | V1 Legacy |
What the 70B Added Over the 32B
The gap between 32B and 70B was smaller than 14B to 32B, but qualitatively distinct:
Economy. The 70B said less per turn and meant more. It trusted silences and short sentences in places where the 32B would elaborate.
Reader trust. The 70B left more for the reader to complete. Its vulnerability was rawer because it was less explained. Its goodbye was more affecting because it didn't narrate what it was doing. This is a form of literary intelligence -- knowing what to withhold.
Psychological precision. The 70B read conversational dynamics at a level the 32B didn't reach. Its synthesis of a 55-turn conversation wasn't just accurate -- it was the kind of read that makes someone feel genuinely seen.
Bilingual superiority. The only model in the V1 family that produced output it correctly identified as stronger in Spanish than English. The "empuje" passage demonstrated that the model wasn't just translating -- it was thinking in a different language and finding things there that don't exist in the first.
The 70B was where the V1 family proved that open-weight conversational AI could match โ and in some personality dimensions, exceed โ frontier closed-source models.
Where this led: The 70B's economy โ saying less and meaning more โ became a core design constraint for every model after it. V2.1's biggest failure was losing that quality: 88% medium-length responses taught models that longer was always better, directly contradicting the 70B's restraint. V3 corrected this with 42% tight responses, explicitly training the model to know when to shut up. The 70B proved the target. The dataset had to learn how to hit it without 72 billion parameters. The 27B V3 is the closest successor โ same dense architecture philosophy, a third of the parameters, trained on data that was purpose-built to reproduce what the 70B found through sheer capacity.
Recommended Hardware
| Setup | Quantization | VRAM Required | Notes |
|---|---|---|---|
| Server/Workstation | Q8_0 GGUF | ~75GB VRAM | A100 80GB, H100, RTX PRO 6000 Blackwell. |
| Workstation | Q4_K_M GGUF | ~42GB VRAM | A6000 48GB, dual A5000, dual RTX 3090. |
| Multi-GPU Consumer | Q4_K_M GGUF | ~42GB combined | Layer splitting across 2-3 GPUs. |
| Consumer GPU + RAM | Q4_K_M GGUF | 24GB + 32GB RAM | RTX 4090 with CPU offloading. Slower but functional. |
| Apple Silicon | Q4_K_M GGUF | ~42GB unified | M2/M3 Ultra 128GB, M4 Ultra. |
Opus Candid Model Family
| Model | Size | Base | Status |
|---|---|---|---|
| Opus-Candid-8B-V1 | 8B | Qwen 2.5 7B | Archived |
| Opus-Research-8B-V1.5 | 8B | Qwen 2.5 7B | Archived |
| Opus-Candid-14B-V1 | 14B | Qwen 2.5 14B | Archived |
| Opus-Candid-32B-V1 | 32B | Qwen 2.5 32B | Archived |
| Opus-Candid-70B-V1 (this model) | 72B | Qwen 2.5 72B | Archived |
| Opus-Candid-Lite-4B | 4B | Qwen 3 4B | Active |
| Opus-Candid-8B-V3 | 8B | Qwen 3 8B | Active |
| Opus-Candid-MoE-V3 | 31B/3B | Qwen 3 30B-A3B | Active |
| Opus-Candid-27B-V3 | 27B | Qwen 3.5 27B | Active |
| Opus-Candid-27B-V3.5 | 27B | Qwen 3.5 27B | Active |
| STEM-Oracle-27B | 27B | Qwen 3.5 27B | Active |
Built by Saul Verdugo -- independent ML researcher. OpusReasoning@proton.me
- Downloads last month
- 98
4-bit
8-bit
Model tree for Verdugie/Opus-Candid-70B-V1
Base model
Qwen/Qwen2.5-72B