Text Generation
GGUF
English
salesforce
apex
lwc
lightning-web-components
code
fine-tuned
unsloth
conversational
Instructions to use deepforce/deepforce-coder-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use deepforce/deepforce-coder-v2 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="deepforce/deepforce-coder-v2", filename="deepforce-coder-v2-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 deepforce/deepforce-coder-v2 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 deepforce/deepforce-coder-v2:Q4_K_M # Run inference directly in the terminal: llama cli -hf deepforce/deepforce-coder-v2:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf deepforce/deepforce-coder-v2:Q4_K_M # Run inference directly in the terminal: llama cli -hf deepforce/deepforce-coder-v2: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 deepforce/deepforce-coder-v2:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf deepforce/deepforce-coder-v2: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 deepforce/deepforce-coder-v2:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf deepforce/deepforce-coder-v2:Q4_K_M
Use Docker
docker model run hf.co/deepforce/deepforce-coder-v2:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use deepforce/deepforce-coder-v2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "deepforce/deepforce-coder-v2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "deepforce/deepforce-coder-v2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/deepforce/deepforce-coder-v2:Q4_K_M
- Ollama
How to use deepforce/deepforce-coder-v2 with Ollama:
ollama run hf.co/deepforce/deepforce-coder-v2:Q4_K_M
- Unsloth Studio
How to use deepforce/deepforce-coder-v2 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 deepforce/deepforce-coder-v2 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 deepforce/deepforce-coder-v2 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for deepforce/deepforce-coder-v2 to start chatting
- Pi
How to use deepforce/deepforce-coder-v2 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf deepforce/deepforce-coder-v2: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": "deepforce/deepforce-coder-v2:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use deepforce/deepforce-coder-v2 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf deepforce/deepforce-coder-v2: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 deepforce/deepforce-coder-v2:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use deepforce/deepforce-coder-v2 with Docker Model Runner:
docker model run hf.co/deepforce/deepforce-coder-v2:Q4_K_M
- Lemonade
How to use deepforce/deepforce-coder-v2 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull deepforce/deepforce-coder-v2:Q4_K_M
Run and chat with the model
lemonade run user.deepforce-coder-v2-Q4_K_M
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
base_model: Qwen/Qwen2.5-Coder-3B-Instruct
|
| 6 |
+
tags:
|
| 7 |
+
- salesforce
|
| 8 |
+
- apex
|
| 9 |
+
- lwc
|
| 10 |
+
- lightning-web-components
|
| 11 |
+
- code
|
| 12 |
+
- fine-tuned
|
| 13 |
+
- gguf
|
| 14 |
+
- unsloth
|
| 15 |
+
pipeline_tag: text-generation
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# DeepForce Coder v2
|
| 19 |
+
|
| 20 |
+
A Salesforce-specialized AI coding assistant fine-tuned on Qwen 2.5 Coder 3B.
|
| 21 |
+
Built specifically for Salesforce developers to generate, debug, review, and refactor
|
| 22 |
+
Apex code and Lightning Web Components following enterprise best practices.
|
| 23 |
+
|
| 24 |
+
> ✅ **v2 improvements over v1:**
|
| 25 |
+
> - Fixed hallucinated Apex APIs
|
| 26 |
+
> - Simple requests now generate clean minimal code
|
| 27 |
+
> - Improved recursion guard patterns
|
| 28 |
+
> - Custom weighted adapter merge for better task balance
|
| 29 |
+
> - specialized adapters trained independently
|
| 30 |
+
|
| 31 |
+
## Capabilities
|
| 32 |
+
|
| 33 |
+
| Task | Description |
|
| 34 |
+
|------|-------------|
|
| 35 |
+
| Apex Generation | Write production-ready Apex classes, triggers, batch, scheduled, queueable |
|
| 36 |
+
| LWC Development | Create Lightning Web Components with SLDS conventions |
|
| 37 |
+
| Code Debug | Identify bugs with severity ratings and corrections |
|
| 38 |
+
| Code Review | Review code against Salesforce best practices |
|
| 39 |
+
| Refactoring | Simplify over-engineered code while preserving security |
|
| 40 |
+
| Test Classes | Generate comprehensive Apex test classes |
|
| 41 |
+
| Recursion Guards | Correct Apex recursion guard patterns |
|
| 42 |
+
| Simple Apex | Clean minimal Apex for simple requirements |
|
| 43 |
+
|
| 44 |
+
## Best Practices Enforced
|
| 45 |
+
|
| 46 |
+
- `with sharing` on all classes
|
| 47 |
+
- `WITH USER_MODE` on all SOQL queries
|
| 48 |
+
- `Security.stripInaccessible()` before DML
|
| 49 |
+
- `try-catch` on all DML and callouts
|
| 50 |
+
- `Database.update/insert(records, false)` for bulk DML
|
| 51 |
+
- No SOQL or DML inside loops
|
| 52 |
+
- Bulkified trigger handlers with recursion guards
|
| 53 |
+
- Static Set<Id> recursion guard pattern
|
| 54 |
+
|
| 55 |
+
## Model Details
|
| 56 |
+
|
| 57 |
+
- **Base model**: Qwen/Qwen2.5-Coder-3B-Instruct
|
| 58 |
+
- **Fine-tuning**: specialized LoRA adapters with custom weights
|
| 59 |
+
- **Training data**: curated Salesforce-specific examples generated via Claude API
|
| 60 |
+
- **Quantization**: Q4_K_M GGUF (1.80 GB)
|
| 61 |
+
- **Context length**: 6144 tokens
|
| 62 |
+
|
| 63 |
+
## Quick Start
|
| 64 |
+
|
| 65 |
+
### Ollama
|
| 66 |
+
```bash
|
| 67 |
+
ollama run hf.co/deepforce/deepforce-coder-v2:Q4_K_M
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
### llama.cpp
|
| 71 |
+
```bash
|
| 72 |
+
llama serve -hf deepforce/deepforce-coder-v2:Q4_K_M
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
### Python (llama-cpp-python)
|
| 76 |
+
```python
|
| 77 |
+
from llama_cpp import Llama
|
| 78 |
+
|
| 79 |
+
llm = Llama.from_pretrained(
|
| 80 |
+
repo_id = "deepforce/deepforce-coder-v2",
|
| 81 |
+
filename = "deepforce-coder-v2-q4_k_m.gguf",
|
| 82 |
+
)
|
| 83 |
+
|
| 84 |
+
response = llm.create_chat_completion(messages=[
|
| 85 |
+
{"role": "system", "content": "You are DeepForce Coder, an expert Salesforce developer."},
|
| 86 |
+
{"role": "user", "content": "Write a simple Apex class that returns Accounts by industry."}
|
| 87 |
+
])
|
| 88 |
+
print(response["choices"][0]["message"]["content"])
|
| 89 |
+
```
|
| 90 |
+
|
| 91 |
+
## Example Prompts
|
| 92 |
+
|
| 93 |
+
**Generate Apex:**
|
| 94 |
+
Write a trigger handler for Opportunity that creates a follow-up Task
|
| 95 |
+
|
| 96 |
+
when StageName changes to Closed Won.
|
| 97 |
+
|
| 98 |
+
**Debug Apex:**
|
| 99 |
+
Debug the following Apex code: [paste your code]
|
| 100 |
+
|
| 101 |
+
**Review Apex:**
|
| 102 |
+
Review the following Apex code for best practices: [paste your code]
|
| 103 |
+
|
| 104 |
+
**Generate LWC:**
|
| 105 |
+
Create an LWC component that displays a list of Accounts in a lightning-datatable.
|
| 106 |
+
|
| 107 |
+
**Refactor Apex:**
|
| 108 |
+
Refactor the following Apex code to the minimum implementation: [paste your code]
|
| 109 |
+
|
| 110 |
+
**Generate Test Class:**
|
| 111 |
+
Generate a comprehensive test class for the following Apex class: [paste your code]
|
| 112 |
+
|
| 113 |
+
## Adapter Architecture
|
| 114 |
+
|
| 115 |
+
DeepForce Coder v2 uses a weighted combination of 9 independently trained LoRA adapters:
|
| 116 |
+
|
| 117 |
+
| Adapter | Weight | Purpose |
|
| 118 |
+
|---------|--------|---------|
|
| 119 |
+
| apex-main | 18% | Complex Apex generation |
|
| 120 |
+
| apex-simple | 18% | Simple clean Apex patterns |
|
| 121 |
+
| lwc | 15% | Lightning Web Components |
|
| 122 |
+
| apex-testclass | 12% | Test class generation |
|
| 123 |
+
| apex-refactor | 10% | Code refactoring |
|
| 124 |
+
| apex-recursion | 10% | Recursion guard patterns |
|
| 125 |
+
| apex-debug | 8% | Bug identification |
|
| 126 |
+
| apex-review | 5% | Code review |
|
| 127 |
+
| apex-basic | 4% | Basic patterns |
|
| 128 |
+
|
| 129 |
+
## Known Limitations in v2
|
| 130 |
+
- Test class generation occasionally uses System.assertEquals instead of Assert class
|
| 131 |
+
- Recursion guard ID extraction needs improvement (fixed in v3)
|
| 132 |
+
- These will be addressed in v3
|
| 133 |
+
|
| 134 |
+
## Training
|
| 135 |
+
|
| 136 |
+
Fine-tuned using [Unsloth](https://github.com/unslothai/unsloth) on Google Colab L4 GPU.
|
| 137 |
+
Training data generated using Anthropic Claude API.
|
| 138 |
+
Each adapter trained independently with set_seed(42) for reproducibility.
|
| 139 |
+
|
| 140 |
+
## Version History
|
| 141 |
+
|
| 142 |
+
| Version | Status | Notes |
|
| 143 |
+
|---------|--------|-------|
|
| 144 |
+
| v1 | ⚠️ Superseded | Hallucinated APIs, over-engineered simple requests |
|
| 145 |
+
| v2 | ✅ Current | Fixed hallucinations, custom weighted merge |
|
| 146 |
+
| v3 | 🔄 Planned | Assert class fix, better recursion guards |
|
| 147 |
+
|
| 148 |
+
## License
|
| 149 |
+
|
| 150 |
+
Apache 2.0 — free for commercial and personal use.
|