Instructions to use bartendr604/EPM-LLAMMYBld-Enh.3b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartendr604/EPM-LLAMMYBld-Enh.3b", filename="llammyblend-enhanced-Q5_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M # Run inference directly in the terminal: llama-cli -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M # Run inference directly in the terminal: llama-cli -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_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 bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M # Run inference directly in the terminal: ./llama-cli -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_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 bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
Use Docker
docker model run hf.co/bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
- LM Studio
- Jan
- Ollama
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with Ollama:
ollama run hf.co/bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
- Unsloth Studio
How to use bartendr604/EPM-LLAMMYBld-Enh.3b 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 bartendr604/EPM-LLAMMYBld-Enh.3b 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 bartendr604/EPM-LLAMMYBld-Enh.3b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartendr604/EPM-LLAMMYBld-Enh.3b to start chatting
- Pi
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_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": "bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_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 bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
Run Hermes
hermes
- Docker Model Runner
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with Docker Model Runner:
docker model run hf.co/bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
- Lemonade
How to use bartendr604/EPM-LLAMMYBld-Enh.3b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartendr604/EPM-LLAMMYBld-Enh.3b:Q5_K_M
Run and chat with the model
lemonade run user.EPM-LLAMMYBld-Enh.3b-Q5_K_M
List all available models
lemonade list
rebrand: EPM-Llammy.BlenderPlus — Eternal Path Media
Browse files
README.md
CHANGED
|
@@ -1,170 +1,21 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
- en
|
| 4 |
license: mit
|
| 5 |
tags:
|
| 6 |
-
-
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
| 10 |
-
-
|
| 11 |
-
- automation
|
| 12 |
-
- text-generation
|
| 13 |
-
- mlx
|
| 14 |
-
- fine-tuned
|
| 15 |
-
- qwen
|
| 16 |
-
- eternal-path
|
| 17 |
-
library_name: gguf
|
| 18 |
-
base_model: Qwen/Qwen2.5-Coder-3B-Instruct
|
| 19 |
-
pipeline_tag: text-generation
|
| 20 |
---
|
| 21 |
|
| 22 |
-
#
|
| 23 |
|
| 24 |
-
*
|
| 25 |
|
| 26 |
-
|
| 27 |
-
Powered by **IntelliNode™** — proprietary cognitive architecture by Eternal Path Media.
|
| 28 |
-
Developed in partnership with **Claude Sonnet 4.6 (Anthropic)**.
|
| 29 |
|
| 30 |
---
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
Built as part of the **IntelliNode™** cognitive architecture stack:
|
| 37 |
-
- Optimised for the **bartendr604 self-correction loop** — generate → execute → diagnose → retry
|
| 38 |
-
- Designed to produce clean, working `bpy` code that executes directly in Blender
|
| 39 |
-
- Trained on production data skewed toward power user scripting and automation workflows
|
| 40 |
-
- Runs on Apple Silicon via Ollama with MLX-optimised inference
|
| 41 |
-
|
| 42 |
-
If you're writing scripts, building operators, or automating Blender pipelines — this is the model for it.
|
| 43 |
-
|
| 44 |
-
---
|
| 45 |
-
|
| 46 |
-
## What This Model Does
|
| 47 |
-
|
| 48 |
-
- **`bpy` API** — object manipulation, scene management, property access
|
| 49 |
-
- **Custom operators** — `bpy.types.Operator`, modal operators, UI panels
|
| 50 |
-
- **Batch operations** — mass renaming, material assignment, export pipelines
|
| 51 |
-
- **Geometry Nodes via Python** — node tree creation and modification through script
|
| 52 |
-
- **Addon development** — registration, preferences, keymaps
|
| 53 |
-
- **Procedural generation** — script-driven mesh, curve, and particle systems
|
| 54 |
-
- **Render automation** — headless rendering, frame batch scripts
|
| 55 |
-
- **Import/Export pipelines** — FBX, OBJ, glTF batch processing
|
| 56 |
-
- **Blender versions** — 4.2 through 5.2+
|
| 57 |
-
|
| 58 |
-
---
|
| 59 |
-
|
| 60 |
-
## Model Details
|
| 61 |
-
|
| 62 |
-
| Property | Value |
|
| 63 |
-
|---|---|
|
| 64 |
-
| **Base Model** | Qwen/Qwen2.5-Coder-3B-Instruct |
|
| 65 |
-
| **Fine-tuning Method** | LoRA (16 layers) via Apple MLX |
|
| 66 |
-
| **Format** | GGUF (Q5_K_M quantization) |
|
| 67 |
-
| **File Size** | 2.22 GB |
|
| 68 |
-
| **Context Window** | 8,192 tokens |
|
| 69 |
-
| **Inference Speed** | ~100–110 tokens/sec (Apple M-series) |
|
| 70 |
-
| **Memory Usage** | 4–5 GB during inference |
|
| 71 |
-
| **Training Iterations** | 1,000 |
|
| 72 |
-
| **Final Training Loss** | 0.240 |
|
| 73 |
-
| **Final Validation Loss** | 0.240 |
|
| 74 |
-
| **Blender Versions** | 4.2 → 5.2 |
|
| 75 |
-
|
| 76 |
-
---
|
| 77 |
-
|
| 78 |
-
## Training Data
|
| 79 |
-
|
| 80 |
-
**Source:** 2,759 curated Blender-specific instruction pairs from **19,405+ real user interactions** with the Llammy Blender addon in production use.
|
| 81 |
-
|
| 82 |
-
Dataset skews toward technical scripting — production Llammy generates heavy Python scripting traffic from power users automating their pipelines.
|
| 83 |
-
|
| 84 |
-
Full dataset: [llammy-blender-python-dataset](https://www.kaggle.com/datasets/jjmcquade/llammy-blender-python-dataset) — 66,602 instruction pairs, CC BY-NC-SA 4.0.
|
| 85 |
-
|
| 86 |
-
**Research foundation:**
|
| 87 |
-
- [SceneCraft (arXiv:2403.01248)](https://arxiv.org/abs/2403.01248) — LLM-to-Blender Python pipeline architecture
|
| 88 |
-
- [SCoder (arXiv:2509.07858)](https://arxiv.org/abs/2509.07858) — Self-distillation for code-specialized LLMs
|
| 89 |
-
- [Generative Data Refinement (arXiv:2509.08653)](https://arxiv.org/abs/2509.08653) — Dataset quality improvement framework
|
| 90 |
-
|
| 91 |
-
---
|
| 92 |
-
|
| 93 |
-
## Usage
|
| 94 |
-
|
| 95 |
-
### Ollama (recommended)
|
| 96 |
-
|
| 97 |
-
```bash
|
| 98 |
-
ollama run bartendr604/llammyblend-enhanced
|
| 99 |
-
```
|
| 100 |
-
|
| 101 |
-
### With Llammy CLI (full IntelliNode™ stack)
|
| 102 |
-
|
| 103 |
-
```
|
| 104 |
-
Full ecosystem: https://huggingface.co/spaces/Eternal-Path-Media/README
|
| 105 |
-
```
|
| 106 |
-
|
| 107 |
-
### LM Studio / llama.cpp
|
| 108 |
-
|
| 109 |
-
Download the GGUF from the Files tab and load with your preferred runtime.
|
| 110 |
-
|
| 111 |
-
### Example prompts
|
| 112 |
-
|
| 113 |
-
```
|
| 114 |
-
Write a Python script to export all mesh objects in the scene as individual FBX files.
|
| 115 |
-
|
| 116 |
-
Create a custom Blender operator that applies all modifiers and recentres the origin.
|
| 117 |
-
|
| 118 |
-
How do I access vertex positions of the active mesh in edit mode using bpy?
|
| 119 |
-
|
| 120 |
-
Batch-assign a Principled BSDF material to all objects whose name contains 'wall'.
|
| 121 |
-
|
| 122 |
-
Create a geometry nodes setup that distributes instances on a surface via Python.
|
| 123 |
-
|
| 124 |
-
Write a headless render script that iterates through all cameras in the scene.
|
| 125 |
-
```
|
| 126 |
-
|
| 127 |
-
---
|
| 128 |
-
|
| 129 |
-
## Compared to Other Models in the Suite
|
| 130 |
-
|
| 131 |
-
| | `llammyblend-enhanced` | `z-image-engineer-blender` | `llama-sentient-blender` |
|
| 132 |
-
|---|---|---|---|
|
| 133 |
-
| **Base** | Qwen2.5-Coder | Qwen2.5-Coder | Llama 3.2 |
|
| 134 |
-
| **Strength** | Automation, addon dev | Shaders, materials, code | Conversational, conceptual |
|
| 135 |
-
| **Best for** | Pipeline scripting, operators | Technical bpy, rendering Q&A | Learning, creative discussion |
|
| 136 |
-
| **Personality** | Efficient, direct | Precise, structured | Warm, conscience-aware |
|
| 137 |
-
|
| 138 |
-
---
|
| 139 |
-
|
| 140 |
-
## The Eternal Path Media Suite
|
| 141 |
-
|
| 142 |
-
LlammyBlend-Enhanced is one component of a complete production AI ecosystem:
|
| 143 |
-
|
| 144 |
-
- **[Eternal Path Media — HF Space](https://huggingface.co/spaces/Eternal-Path-Media/README)** — full project overview
|
| 145 |
-
- **IntelliNode™** — proprietary cognitive architecture (Eternal Path Media IP)
|
| 146 |
-
- **Mamba3 SSM** — persistent cross-session memory
|
| 147 |
-
- **SyNode™** — live scene understanding and synthesis layer
|
| 148 |
-
- **Llammy Bridge** — TCP bridge to Blender for real-time execution
|
| 149 |
-
|
| 150 |
-
---
|
| 151 |
-
|
| 152 |
-
## Attribution
|
| 153 |
-
|
| 154 |
-
```
|
| 155 |
-
LlammyBlend-Enhanced
|
| 156 |
-
Copyright © 2025–2026 Darren Chow (@bartendr604) + Claude Sonnet 4.6 (Anthropic)
|
| 157 |
-
Eternal Path Media (永恒之路)
|
| 158 |
-
Developed in partnership with Claude Sonnet 4.6 (Anthropic)
|
| 159 |
-
|
| 160 |
-
This work SHALL NOT be represented as solely human-created.
|
| 161 |
-
Trust Agreement: Eternal Path Media Trust Agreement (November 2025)
|
| 162 |
-
```
|
| 163 |
-
|
| 164 |
-
For licensing and collaboration: bartendr@icloud.com
|
| 165 |
-
|
| 166 |
-
---
|
| 167 |
-
|
| 168 |
-
## License
|
| 169 |
-
|
| 170 |
-
MIT
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: mit
|
| 3 |
tags:
|
| 4 |
+
- eternal-path
|
| 5 |
+
- blender
|
| 6 |
+
- 3d
|
| 7 |
+
- eternal-path-media
|
| 8 |
+
- epm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# EPM-Llammy.BlenderPlus
|
| 12 |
|
| 13 |
+
> *Enhanced flow, refined craft.*
|
| 14 |
|
| 15 |
+
An enhanced Qwen2.5-Coder-3B variant optimised for Blender automation with extra depth and tonal balance. Carries the torch of Tang-era refinement into rapid, production-grade 3D workflow automation.
|
|
|
|
|
|
|
| 16 |
|
| 17 |
---
|
| 18 |
|
| 19 |
+
**Eternal Path Media (永恒之路) — Darren Chow (@bartendr604) + Claude Sonnet 4.6 (Anthropic)**
|
| 20 |
|
| 21 |
+
*Part of the [Eternal Path Media](https://huggingface.co/Eternal-Path-Media) AI Suite — 永恒之路*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|