Text Generation
GGUF
English
qwen3_5_moe
Mixture of Experts
agent
business
tool-calling
coding
websites
local
apache-2.0
conversational
Instructions to use RMDWLLC/kaiju-coder-mlx-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use RMDWLLC/kaiju-coder-mlx-1.0 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="RMDWLLC/kaiju-coder-mlx-1.0", filename="kaiju-coder-mlx-1.0-q8_0.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 RMDWLLC/kaiju-coder-mlx-1.0 with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0 # Run inference directly in the terminal: llama-cli -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0 # Run inference directly in the terminal: llama-cli -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
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 RMDWLLC/kaiju-coder-mlx-1.0:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
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 RMDWLLC/kaiju-coder-mlx-1.0:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
Use Docker
docker model run hf.co/RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
- LM Studio
- Jan
- vLLM
How to use RMDWLLC/kaiju-coder-mlx-1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RMDWLLC/kaiju-coder-mlx-1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RMDWLLC/kaiju-coder-mlx-1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
- Ollama
How to use RMDWLLC/kaiju-coder-mlx-1.0 with Ollama:
ollama run hf.co/RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
- Unsloth Studio
How to use RMDWLLC/kaiju-coder-mlx-1.0 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 RMDWLLC/kaiju-coder-mlx-1.0 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 RMDWLLC/kaiju-coder-mlx-1.0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for RMDWLLC/kaiju-coder-mlx-1.0 to start chatting
- Pi
How to use RMDWLLC/kaiju-coder-mlx-1.0 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
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": "RMDWLLC/kaiju-coder-mlx-1.0:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use RMDWLLC/kaiju-coder-mlx-1.0 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
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 RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use RMDWLLC/kaiju-coder-mlx-1.0 with Docker Model Runner:
docker model run hf.co/RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
- Lemonade
How to use RMDWLLC/kaiju-coder-mlx-1.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull RMDWLLC/kaiju-coder-mlx-1.0:Q8_0
Run and chat with the model
lemonade run user.kaiju-coder-mlx-1.0-Q8_0
List all available models
lemonade list
Kaiju-Coder MLX 1.0: model card, license, notice, Modelfile
Browse files
LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
| 188 |
+
|
| 189 |
+
Copyright [yyyy] [name of copyright owner]
|
| 190 |
+
|
| 191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 192 |
+
you may not use this file except in compliance with the License.
|
| 193 |
+
You may obtain a copy of the License at
|
| 194 |
+
|
| 195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 196 |
+
|
| 197 |
+
Unless required by applicable law or agreed to in writing, software
|
| 198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 200 |
+
See the License for the specific language governing permissions and
|
| 201 |
+
limitations under the License.
|
Modelfile
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Modelfile generated by "ollama show"
|
| 2 |
+
# To build a new Modelfile based on this, replace FROM with:
|
| 3 |
+
# FROM kaiju-coder-mlx:1.0
|
| 4 |
+
|
| 5 |
+
FROM ./kaiju-coder-mlx-1.0-q8_0.gguf
|
| 6 |
+
TEMPLATE "{{ if .System }}<|im_start|>system
|
| 7 |
+
{{ .System }}<|im_end|>
|
| 8 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
| 9 |
+
{{ .Prompt }} /no_think<|im_end|>
|
| 10 |
+
<|im_start|>assistant
|
| 11 |
+
<think>
|
| 12 |
+
|
| 13 |
+
</think>
|
| 14 |
+
|
| 15 |
+
{{ end }}{{ .Response }}"
|
| 16 |
+
SYSTEM You are Kaiju-Coder MLX 1.0, a local coding and business-building assistant for premium websites, invoices, leads, staffing, and small-business operating systems. Answer directly, produce usable artifacts, and do not reveal hidden reasoning or thinking tags.
|
| 17 |
+
RENDERER qwen3.5
|
| 18 |
+
PARSER qwen3.5
|
| 19 |
+
PARAMETER num_ctx 8192
|
| 20 |
+
PARAMETER num_predict 2048
|
| 21 |
+
PARAMETER top_k 20
|
| 22 |
+
PARAMETER top_p 0.95
|
| 23 |
+
PARAMETER min_p 0
|
| 24 |
+
PARAMETER presence_penalty 0.2
|
| 25 |
+
PARAMETER repeat_penalty 1.05
|
| 26 |
+
PARAMETER stop <|im_end|>
|
| 27 |
+
PARAMETER stop <|endoftext|>
|
| 28 |
+
PARAMETER stop <|im_start|>
|
| 29 |
+
PARAMETER temperature 0.2
|
| 30 |
+
|
NOTICE
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Kaiju-Coder MLX 1.0 by Kiyomi
|
| 2 |
+
=============================
|
| 3 |
+
|
| 4 |
+
This product includes a fine-tune of and derivative work from a third-party
|
| 5 |
+
base model, redistributed under the Apache License, Version 2.0. The full
|
| 6 |
+
license text is in the accompanying LICENSE file.
|
| 7 |
+
|
| 8 |
+
-------------------------------------------------------------------------------
|
| 9 |
+
Base model
|
| 10 |
+
-------------------------------------------------------------------------------
|
| 11 |
+
|
| 12 |
+
Qwen3.6-35B-A3B
|
| 13 |
+
Copyright 2026 Alibaba Cloud
|
| 14 |
+
Licensed under the Apache License, Version 2.0.
|
| 15 |
+
|
| 16 |
+
The base model is available from the Qwen team at Alibaba Cloud
|
| 17 |
+
(Hugging Face repo: Qwen/Qwen3.6-35B-A3B). Architecture id: qwen3_5_moe;
|
| 18 |
+
35.9B total parameters with roughly 3B active per token (mixture-of-experts).
|
| 19 |
+
|
| 20 |
+
-------------------------------------------------------------------------------
|
| 21 |
+
Modifications made in this work
|
| 22 |
+
-------------------------------------------------------------------------------
|
| 23 |
+
|
| 24 |
+
This work MODIFIED the base model. Specifically:
|
| 25 |
+
|
| 26 |
+
- A LoRA fine-tune was trained on top of the base model and fused into the
|
| 27 |
+
released weights. The fine-tune data is RMDW/Kiyomi-owned deterministic
|
| 28 |
+
output for a business-niche builder use case (websites, Stripe, invoices,
|
| 29 |
+
leads, CRM/intake, automations).
|
| 30 |
+
- The redistributed GGUF is a TEXT-ONLY derivative. The base Qwen3.6-35B-A3B
|
| 31 |
+
is a vision-language model; the vision pathway is stripped in this GGUF.
|
| 32 |
+
This work does not provide and does not advertise vision capabilities.
|
| 33 |
+
- Tokenizer, chat-template, and serving configuration were adapted for the
|
| 34 |
+
GGUF/Ollama/llama.cpp local-serving path.
|
| 35 |
+
|
| 36 |
+
These modifications were made by Richard Echols / RMDW. As required by the
|
| 37 |
+
Apache License, Version 2.0, Section 4(b), the changed files carry notices
|
| 38 |
+
stating that they were changed.
|
| 39 |
+
|
| 40 |
+
-------------------------------------------------------------------------------
|
| 41 |
+
Additions and fine-tune by this work
|
| 42 |
+
-------------------------------------------------------------------------------
|
| 43 |
+
|
| 44 |
+
Kaiju-Coder MLX additions, fine-tune weights, training and packaging scripts,
|
| 45 |
+
model card, and documentation
|
| 46 |
+
Copyright 2026 Richard Echols / RMDW
|
| 47 |
+
Licensed under the Apache License, Version 2.0.
|
| 48 |
+
|
| 49 |
+
-------------------------------------------------------------------------------
|
| 50 |
+
Attribution and endorsement
|
| 51 |
+
-------------------------------------------------------------------------------
|
| 52 |
+
|
| 53 |
+
This is an independent fine-tune. Alibaba Cloud and the Qwen team do not
|
| 54 |
+
endorse, sponsor, or support this work, and nothing in this distribution
|
| 55 |
+
should be read as implying such endorsement. "Qwen" and "Alibaba Cloud" are
|
| 56 |
+
used only to describe the origin of the base model, as permitted by Section 6
|
| 57 |
+
of the Apache License, Version 2.0.
|
README.md
ADDED
|
@@ -0,0 +1,187 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3.6-35B-A3B
|
| 4 |
+
base_model_relation: finetune
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
library_name: gguf
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
tags:
|
| 10 |
+
- qwen3_5_moe
|
| 11 |
+
- moe
|
| 12 |
+
- agent
|
| 13 |
+
- business
|
| 14 |
+
- tool-calling
|
| 15 |
+
- gguf
|
| 16 |
+
- coding
|
| 17 |
+
- local
|
| 18 |
+
- apache-2.0
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# Kaiju-Coder MLX 1.0 by Kiyomi
|
| 22 |
+
|
| 23 |
+
The local model that runs your business, not just your IDE.
|
| 24 |
+
|
| 25 |
+
Kaiju-Coder MLX 1.0 is a local-first builder model for solo founders and small-business
|
| 26 |
+
owners. It is tuned for the work that actually moves a one-person business: shipping a
|
| 27 |
+
website, wiring Stripe checkout, writing invoices and proposals, capturing leads, building
|
| 28 |
+
CRM/intake flows, and standing up small automations. It runs on your own machine through
|
| 29 |
+
Ollama, LM Studio, or llama.cpp. No API key, no data leaving your laptop, Apache-2.0.
|
| 30 |
+
|
| 31 |
+
This is a text-only GGUF derived from Qwen3.6-35B-A3B. It is a scoped business-niche model,
|
| 32 |
+
not a frontier general-purpose coder. See Limitations before you rely on it.
|
| 33 |
+
|
| 34 |
+
## Quant table
|
| 35 |
+
|
| 36 |
+
Sizes are the on-disk GGUF size; RAM figures are approximate working-set estimates.
|
| 37 |
+
|
| 38 |
+
| File | Bits | Size | RAM (approx) | Use |
|
| 39 |
+
|---|---|---|---|---|
|
| 40 |
+
| `kaiju-coder-mlx-1.0-q8_0.gguf` | Q8_0 | ~34.4 GB | ~40 GB | Highest fidelity, the verified release artifact (available now) |
|
| 41 |
+
| `kaiju-coder-mlx-1.0-q5_k_m.gguf` | Q5_K_M | ~25 GB | ~28 GB | Balanced quality/size (coming soon) |
|
| 42 |
+
| `kaiju-coder-mlx-1.0-q4_k_m.gguf` | Q4_K_M | ~21 GB | ~24 GB | Smallest, runs on more machines (coming soon) |
|
| 43 |
+
|
| 44 |
+
The Q8_0 file is the Goku-verified release artifact and is available now (SHA256
|
| 45 |
+
`514169306484b4eb4ebd936d28c5bf590c5e68a938ea44e2b18d988d0c157cc5`). The LoRA adapter is also
|
| 46 |
+
included under `adapter/` for use on top of the base model. Smaller K-quants (Q5_K_M, Q4_K_M)
|
| 47 |
+
are being added; community re-quants are welcome.
|
| 48 |
+
|
| 49 |
+
This is a 35.9B-total mixture-of-experts model (architecture id `qwen3_5_moe`) with roughly
|
| 50 |
+
3B active parameters per token, so it is lighter to run than its total size suggests, but it
|
| 51 |
+
still needs enough memory to hold the full weight set.
|
| 52 |
+
|
| 53 |
+
## Quickstart
|
| 54 |
+
|
| 55 |
+
Kaiju-Coder is a chat/instruct model. Run it with thinking output turned off for
|
| 56 |
+
customer-visible work, or you may see empty `<think></think>` scaffolding.
|
| 57 |
+
|
| 58 |
+
### Ollama
|
| 59 |
+
|
| 60 |
+
Download the GGUF and the `Modelfile` into the same folder, then:
|
| 61 |
+
|
| 62 |
+
```bash
|
| 63 |
+
ollama create kaiju-coder-mlx:1.0 -f Modelfile
|
| 64 |
+
ollama run kaiju-coder-mlx:1.0 --think=false --hidethinking \
|
| 65 |
+
"Build a one-page landing site for a Charlotte roofing company with a Request an Inspection CTA."
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
API clients should pass top-level `think: false`:
|
| 69 |
+
|
| 70 |
+
```bash
|
| 71 |
+
curl http://127.0.0.1:11434/api/chat -d '{
|
| 72 |
+
"model": "kaiju-coder-mlx:1.0",
|
| 73 |
+
"think": false,
|
| 74 |
+
"messages": [{"role": "user", "content": "Write a Stripe Checkout route for a $250 deposit."}]
|
| 75 |
+
}'
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
### LM Studio
|
| 79 |
+
|
| 80 |
+
1. Download the GGUF into your LM Studio models folder (or use the in-app Hugging Face search).
|
| 81 |
+
2. Load the model.
|
| 82 |
+
3. In the model settings, keep the system prompt that ships in the GGUF metadata, and disable
|
| 83 |
+
any reasoning/thinking display so customer output is clean.
|
| 84 |
+
4. Chat normally. For tool-calling agent workflows, use the Ollama or llama.cpp path below;
|
| 85 |
+
LM Studio is supported for direct chat and artifact generation.
|
| 86 |
+
|
| 87 |
+
Note: LM Studio import is expected to work because the GGUF metadata is correct, but it has
|
| 88 |
+
not yet been smoke-tested end to end. Treat LM Studio as a chat path until that smoke is
|
| 89 |
+
published.
|
| 90 |
+
|
| 91 |
+
### llama.cpp
|
| 92 |
+
|
| 93 |
+
```bash
|
| 94 |
+
./llama-cli \
|
| 95 |
+
-m kaiju-coder-mlx-1.0-q8_0.gguf \
|
| 96 |
+
--jinja \
|
| 97 |
+
-p "Write a clean invoice template in HTML for a landscaping business, deposit and balance lines included."
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
For server / tool-calling use:
|
| 101 |
+
|
| 102 |
+
```bash
|
| 103 |
+
./llama-server -m kaiju-coder-mlx-1.0-q8_0.gguf --jinja --port 8080
|
| 104 |
+
```
|
| 105 |
+
|
| 106 |
+
Raw `llama-cli` may render an empty `<think></think>` block. Use Ollama `--think=false
|
| 107 |
+
--hidethinking` or an API `think:false` flag for clean customer-facing output.
|
| 108 |
+
|
| 109 |
+
## Benchmarks
|
| 110 |
+
|
| 111 |
+
Coding numbers below are measured. They come from a controlled EvalPlus run: think-off,
|
| 112 |
+
greedy, the identical harness for both models, varying only the weights, served through the
|
| 113 |
+
same Ollama runtime. Tool-calling (BFCL v3) and the BizAgent-Gold deliverable score are still
|
| 114 |
+
pending and labeled TBD; they are not invented.
|
| 115 |
+
|
| 116 |
+
| Benchmark | Base (Qwen3.6-35B-A3B) | Kaiju-Coder MLX 1.0 (adapter) |
|
| 117 |
+
|---|---|---|
|
| 118 |
+
| EvalPlus pass@1 (HumanEval+) | 89.6% | 88.4% |
|
| 119 |
+
| EvalPlus pass@1 (HumanEval base) | 93.3% | 92.1% |
|
| 120 |
+
| EvalPlus pass@1 (MBPP+) | 78.0% | 75.9% |
|
| 121 |
+
| EvalPlus pass@1 (MBPP base) | 91.8% | 87.0% |
|
| 122 |
+
| BFCL v3 (tool/function calling) | TBD (run pending) | TBD (run pending) |
|
| 123 |
+
| BizAgent-Gold deliverable quality | TBD (run pending) | TBD (run pending) |
|
| 124 |
+
|
| 125 |
+
Read honestly: the business fine-tune costs a little coding accuracy. On the rigorous EvalPlus
|
| 126 |
+
"+" sets the gap is about 1 to 2 points (HumanEval+ 88.4 vs 89.6, MBPP+ 75.9 vs 78.0); the
|
| 127 |
+
largest gap is on MBPP base tests (87.0 vs 91.8). The model is still a strong coder and keeps
|
| 128 |
+
the base's frontier-class agentic foundation, while adding the business-owner workflows it is
|
| 129 |
+
built for.
|
| 130 |
+
|
| 131 |
+
The retired keyword smoke test is not a benchmark and is excluded on purpose. The real gates
|
| 132 |
+
are EvalPlus pass@1 for coding, BFCL v3 for tool-calls, and a deliverable-quality run for
|
| 133 |
+
business artifacts.
|
| 134 |
+
|
| 135 |
+
Open rubric: the BizAgent-Gold task set and scoring rubric used to judge business deliverables
|
| 136 |
+
are open. Rubric and tasks: `benchmarks/golden-bizagent-tasks.json` and
|
| 137 |
+
`benchmarks/niche-config.json` in the source repository. The judge for any published score is
|
| 138 |
+
an open model, named in the result; closed-model judges are not used.
|
| 139 |
+
|
| 140 |
+
## What works raw vs needs the harness
|
| 141 |
+
|
| 142 |
+
- Works raw (model alone, Ollama or LM Studio): identity and voice, safe refusals, invoices,
|
| 143 |
+
proposals, follow-up sequences, CRM/intake route files, Stripe reasoning with environment
|
| 144 |
+
placeholders, and compact single-file websites and components.
|
| 145 |
+
- Needs the harness (a verifier/retry loop around the model): full, polished, multi-file
|
| 146 |
+
customer websites with screenshots. Raw single-shot agent runs do not reliably clear the
|
| 147 |
+
customer-grade website bar. For that work, drive the model through a file-write/retry harness
|
| 148 |
+
rather than a single raw call. The blessed agentic serving path is GGUF/Ollama/llama.cpp; the
|
| 149 |
+
end-of-tool-call token is baked into the tool training so tool calls close cleanly.
|
| 150 |
+
|
| 151 |
+
## Limitations
|
| 152 |
+
|
| 153 |
+
- Scoped, not frontier. This is a business-niche builder model, not a general-purpose frontier
|
| 154 |
+
coder. It is strongest on the founder workflows listed above and weaker outside them.
|
| 155 |
+
- Text-only GGUF. The base Qwen3.6-35B-A3B is a vision-language model. This GGUF strips the
|
| 156 |
+
vision pathway. It does not see images and does not advertise vision.
|
| 157 |
+
- Small coding regression vs base. On the rigorous EvalPlus "+" sets this fine-tune is within
|
| 158 |
+
about 1 to 2 points of the base (HumanEval+ 88.4 vs 89.6, MBPP+ 75.9 vs 78.0); on MBPP base
|
| 159 |
+
tests the gap is larger (87.0 vs 91.8). It is the expected cost of business tuning. Tool-calling
|
| 160 |
+
(BFCL v3) is measured separately and not yet published.
|
| 161 |
+
- Validated on a focused lane. The model has been checked on a Kaiju/RMDW business-owner task
|
| 162 |
+
set, not on broad public benchmarks.
|
| 163 |
+
- Run with thinking off. Direct CLI use can expose `<think>` scaffolding; pass `think:false`
|
| 164 |
+
(or `--think=false --hidethinking`) for customer-visible output.
|
| 165 |
+
- Raw website delivery. Raw single-shot website generation is not customer-grade; use a
|
| 166 |
+
harness or file/retry path for polished multi-file sites.
|
| 167 |
+
- Human review. Customer-facing deliverables should get a human review pass during early use.
|
| 168 |
+
|
| 169 |
+
## Identity
|
| 170 |
+
|
| 171 |
+
Kaiju-Coder MLX 1.0 by Kiyomi is a local-first builder for solo founders and small-business
|
| 172 |
+
owners. It is honest about what it is: it does not pretend to be Claude, GPT, or any other
|
| 173 |
+
model, and it does not claim vision. Voice: direct, ship-first, no corporate filler.
|
| 174 |
+
|
| 175 |
+
## License and attribution
|
| 176 |
+
|
| 177 |
+
Licensed under the Apache License, Version 2.0. See `LICENSE` and `NOTICE`.
|
| 178 |
+
|
| 179 |
+
- Base model: Qwen/Qwen3.6-35B-A3B, Copyright 2026 Alibaba Cloud, licensed under Apache-2.0.
|
| 180 |
+
- This work is a LoRA fine-tune that modified the base model, packaged as a text-only GGUF.
|
| 181 |
+
- Fine-tuned from Qwen3.6-35B-A3B by Richard Echols / RMDW.
|
| 182 |
+
- Not endorsed by Alibaba Cloud or the Qwen team. "Qwen" and "Alibaba Cloud" are referenced
|
| 183 |
+
only to describe the origin of the base model.
|
| 184 |
+
|
| 185 |
+
Training-data policy: the fine-tune uses RMDW/Kiyomi-owned deterministic output only. No
|
| 186 |
+
closed-model completions were used as supervised training targets. Any open-model judge used
|
| 187 |
+
for evaluation scoring is named in the result.
|