Text Generation
Transformers
Safetensors
English
qwen3_5
image-text-to-text
kaiju-coder-7
coding
local-ai
business
opencode
tool-use
conversational
Instructions to use RMDWLLC/kaiju-coder-7 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RMDWLLC/kaiju-coder-7 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="RMDWLLC/kaiju-coder-7") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("RMDWLLC/kaiju-coder-7") model = AutoModelForMultimodalLM.from_pretrained("RMDWLLC/kaiju-coder-7") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use RMDWLLC/kaiju-coder-7 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RMDWLLC/kaiju-coder-7" # 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-7", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RMDWLLC/kaiju-coder-7
- SGLang
How to use RMDWLLC/kaiju-coder-7 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 "RMDWLLC/kaiju-coder-7" \ --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": "RMDWLLC/kaiju-coder-7", "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 "RMDWLLC/kaiju-coder-7" \ --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": "RMDWLLC/kaiju-coder-7", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use RMDWLLC/kaiju-coder-7 with Docker Model Runner:
docker model run hf.co/RMDWLLC/kaiju-coder-7
Refresh HF upload evidence snapshot
Browse files- HF_UPLOAD_EVIDENCE.md +7 -3
HF_UPLOAD_EVIDENCE.md
CHANGED
|
@@ -6,10 +6,14 @@ Generated: `2026-06-03T20:36:26Z`
|
|
| 6 |
|
| 7 |
| Repo | Visibility | Evidence |
|
| 8 |
|---|---|---|
|
| 9 |
-
| `RMDWLLC/kaiju-coder-7-adapter` | public | Final visible SHA `
|
| 10 |
| `RMDWLLC/kaiju-coder-7-opencode` | public | Final visible SHA `3c9c75416ffb41645a1a959beb99baeff6972fb8`; public visibility and OpenCode installer dry-run verified. |
|
| 11 |
| `RMDWLLC/kaiju-coder-7-quantized-runtime` | public | Uploaded at commit `6d7449a3ffac68ed1d591c57b044ba599cee8b11`; public visibility verified. |
|
| 12 |
-
| `RMDWLLC/kaiju-coder-7` | public | `hf upload-large-folder` completed successfully, then metadata/evidence refreshed at final visible SHA `
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
## Merged Model Upload
|
| 15 |
|
|
@@ -74,7 +78,7 @@ Result:
|
|
| 74 |
- The downloaded OpenCode helper installer dry-run passed and included the
|
| 75 |
loop guard.
|
| 76 |
- Merged model metadata reports `private: false`, SHA
|
| 77 |
-
`
|
| 78 |
safetensors shards.
|
| 79 |
|
| 80 |
The earlier private-storage limit blocked private file downloads after the
|
|
|
|
| 6 |
|
| 7 |
| Repo | Visibility | Evidence |
|
| 8 |
|---|---|---|
|
| 9 |
+
| `RMDWLLC/kaiju-coder-7-adapter` | public | Final visible SHA `9f36ce33fe1f38bab44719bf2dfe19f274e32928`; public visibility verified after 2026-06-03 paid API evidence refresh. |
|
| 10 |
| `RMDWLLC/kaiju-coder-7-opencode` | public | Final visible SHA `3c9c75416ffb41645a1a959beb99baeff6972fb8`; public visibility and OpenCode installer dry-run verified. |
|
| 11 |
| `RMDWLLC/kaiju-coder-7-quantized-runtime` | public | Uploaded at commit `6d7449a3ffac68ed1d591c57b044ba599cee8b11`; public visibility verified. |
|
| 12 |
+
| `RMDWLLC/kaiju-coder-7` | public | `hf upload-large-folder` completed successfully, then metadata/evidence refreshed at final visible SHA `8d8d6ea21d14cea9af743e8f80148dc9437fe7d5`; public metadata reports `private: false`. |
|
| 13 |
+
|
| 14 |
+
These SHAs are a point-in-time release evidence snapshot. Uploading this
|
| 15 |
+
evidence file itself creates another metadata commit, so use `hf models info`
|
| 16 |
+
for the current repository SHA when exact current SHA matters.
|
| 17 |
|
| 18 |
## Merged Model Upload
|
| 19 |
|
|
|
|
| 78 |
- The downloaded OpenCode helper installer dry-run passed and included the
|
| 79 |
loop guard.
|
| 80 |
- Merged model metadata reports `private: false`, SHA
|
| 81 |
+
`8d8d6ea21d14cea9af743e8f80148dc9437fe7d5`, and lists all `14`
|
| 82 |
safetensors shards.
|
| 83 |
|
| 84 |
The earlier private-storage limit blocked private file downloads after the
|