Text Generation
Safetensors
GGUF
Rust
English
Vietnamese
dioxus
accessibility
wcag
fine-tuned
raft
code
server-functions
qwen3
family-hub
scoped-css
syncstore
conversational
Instructions to use rockypod/neotoi-coder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use rockypod/neotoi-coder with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="rockypod/neotoi-coder", filename="neotoi-coder-v1-q4_k_m_final.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use rockypod/neotoi-coder with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf rockypod/neotoi-coder:Q4_K_M # Run inference directly in the terminal: llama-cli -hf rockypod/neotoi-coder:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf rockypod/neotoi-coder:Q4_K_M # Run inference directly in the terminal: llama-cli -hf rockypod/neotoi-coder: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 rockypod/neotoi-coder:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf rockypod/neotoi-coder: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 rockypod/neotoi-coder:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf rockypod/neotoi-coder:Q4_K_M
Use Docker
docker model run hf.co/rockypod/neotoi-coder:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use rockypod/neotoi-coder with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rockypod/neotoi-coder" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rockypod/neotoi-coder", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rockypod/neotoi-coder:Q4_K_M
- Ollama
How to use rockypod/neotoi-coder with Ollama:
ollama run hf.co/rockypod/neotoi-coder:Q4_K_M
- Unsloth Studio new
How to use rockypod/neotoi-coder 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 rockypod/neotoi-coder 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 rockypod/neotoi-coder to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for rockypod/neotoi-coder to start chatting
- Pi new
How to use rockypod/neotoi-coder with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf rockypod/neotoi-coder: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": "rockypod/neotoi-coder:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use rockypod/neotoi-coder with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf rockypod/neotoi-coder: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 rockypod/neotoi-coder:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use rockypod/neotoi-coder with Docker Model Runner:
docker model run hf.co/rockypod/neotoi-coder:Q4_K_M
- Lemonade
How to use rockypod/neotoi-coder with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull rockypod/neotoi-coder:Q4_K_M
Run and chat with the model
lemonade run user.neotoi-coder-Q4_K_M
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: neotoi-coder-community-license
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
base_model: Qwen/Qwen3-Coder-14B
|
| 7 |
+
tags:
|
| 8 |
+
- dioxus
|
| 9 |
+
- rust
|
| 10 |
+
- accessibility
|
| 11 |
+
- wcag
|
| 12 |
+
- fine-tuned
|
| 13 |
+
- raft
|
| 14 |
+
- code
|
| 15 |
+
- mlx
|
| 16 |
+
pipeline_tag: text-generation
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Neotoi Coder v1
|
| 20 |
+
|
| 21 |
+
A Rust/Dioxus 0.7 specialist fine-tuned from Qwen3-Coder-14B using RAFT
|
| 22 |
+
(Retrieval-Augmented Fine-Tuning). Optimized for production-quality
|
| 23 |
+
Dioxus 0.7 components with Tailwind v4 and WCAG 2.2 AAA accessibility.
|
| 24 |
+
|
| 25 |
+
## Exam Results
|
| 26 |
+
|
| 27 |
+
| Tier | Score | Required | Status |
|
| 28 |
+
|---|---|---|---|
|
| 29 |
+
| T1 Fundamentals | 9/10 | 9/10 | β
|
|
| 30 |
+
| T2 RSX Syntax | 9/10 | 8/10 | β
|
|
| 31 |
+
| T3 Signal Hygiene | 10/10 | 8/10 | β
|
|
| 32 |
+
| T4 WCAG/ARIA | 9/10 | 7/10 | β
|
|
| 33 |
+
| T5 use_resource | 4/5 | 4/5 | β
|
|
| 34 |
+
| T6 Hard Reasoning | 2/5 | 2/5 | β
|
|
| 35 |
+
| T7 Primitives+CSS | 8/10 | 6/10 | β
|
|
| 36 |
+
| **Overall** | **51/60** | **50/60** | **β
PASS** |
|
| 37 |
+
|
| 38 |
+
## Model Details
|
| 39 |
+
|
| 40 |
+
- **Base model:** Qwen3-Coder-14B
|
| 41 |
+
- **Method:** RAFT (Retrieval-Augmented Fine-Tuning)
|
| 42 |
+
- **Dataset:** 3,156 curated Dioxus 0.7 examples
|
| 43 |
+
- **Scope:** Rust + Dioxus 0.7 + Tailwind v4 + WCAG 2.2 AAA
|
| 44 |
+
- **Quantization:** Q4_K_M (8.38 GB)
|
| 45 |
+
- **Author:** Kevin Miller, Jr.
|
| 46 |
+
|
| 47 |
+
## Enabling Thinking Mode
|
| 48 |
+
|
| 49 |
+
This model supports Qwen3 native thinking tokens.
|
| 50 |
+
Thinking must be enabled manually depending on your inference backend.
|
| 51 |
+
|
| 52 |
+
### LM Studio
|
| 53 |
+
|
| 54 |
+
In the chat interface go to the prompt template settings and configure:
|
| 55 |
+
|
| 56 |
+
| Field | Value |
|
| 57 |
+
|---|---|
|
| 58 |
+
| Before System | `<\|im_start\|>system` |
|
| 59 |
+
| After System | `<\|im_end\|>` |
|
| 60 |
+
| Before User | `<\|im_start\|>user` |
|
| 61 |
+
| After User | `<\|im_end\|>` |
|
| 62 |
+
| Before Assistant | `<\|im_start\|>assistant\n<think>` |
|
| 63 |
+
| After Assistant | `<\|im_end\|>` |
|
| 64 |
+
|
| 65 |
+
### Ollama
|
| 66 |
+
|
| 67 |
+
Create a Modelfile:
|
| 68 |
+
```
|
| 69 |
+
FROM neotoi-coder-v1-q4_k_m_final.gguf
|
| 70 |
+
PARAMETER temperature 0.2
|
| 71 |
+
PARAMETER num_predict 4096
|
| 72 |
+
PARAMETER repeat_penalty 1.15
|
| 73 |
+
PARAMETER stop "<|im_end|>"
|
| 74 |
+
TEMPLATE """<|im_start|>system
|
| 75 |
+
{{ .System }}<|im_end|>
|
| 76 |
+
<|im_start|>user
|
| 77 |
+
{{ .Prompt }}<|im_end|>
|
| 78 |
+
<|im_start|>assistant
|
| 79 |
+
<think>
|
| 80 |
+
"""
|
| 81 |
+
SYSTEM You are Neotoi, an expert Rust and Dioxus 0.7 developer. Always think step-by-step before answering.
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
### llama.cpp / llama-cli
|
| 85 |
+
```bash
|
| 86 |
+
./llama-cli \
|
| 87 |
+
-m neotoi-coder-v1-q4_k_m_final.gguf \
|
| 88 |
+
-ngl 99 \
|
| 89 |
+
--temp 0.2 \
|
| 90 |
+
-p "<|im_start|>user\nYour question here<|im_end|>\n<|im_start|>assistant\n<think>"
|
| 91 |
+
```
|
| 92 |
+
|
| 93 |
+
## What It Knows
|
| 94 |
+
|
| 95 |
+
- Dioxus 0.7 RSX brace syntax β never function-call style
|
| 96 |
+
- `use_signal`, `use_resource` with correct three-arm match
|
| 97 |
+
- `r#for` on label elements only, never inputs
|
| 98 |
+
- WCAG 2.2 AAA: `aria_labelledby`, `aria_describedby`,
|
| 99 |
+
`role="alert"`, `role="dialog"`, live regions
|
| 100 |
+
- dioxus-primitives β no manual ARIA on managed components
|
| 101 |
+
- `styles!()` macro for CSS modules
|
| 102 |
+
- Tailwind v4 utility classes
|
| 103 |
+
|
| 104 |
+
## What It Does Not Know
|
| 105 |
+
|
| 106 |
+
- Tier 6 hard reasoning edge cases (use_context panic behavior,
|
| 107 |
+
optimistic UI race conditions) β known weak spots
|
| 108 |
+
- Playwright/E2E testing (out of scope)
|
| 109 |
+
- Non-Dioxus web frameworks
|
| 110 |
+
|
| 111 |
+
## License
|
| 112 |
+
|
| 113 |
+
Neotoi Coder Community License v1.0 β see LICENSE file.
|
| 114 |
+
Commercial use of model outputs permitted.
|
| 115 |
+
Weight redistribution prohibited.
|
| 116 |
+
Mental health deployment requires written permission.
|
| 117 |
+
|
| 118 |
+
## Credits
|
| 119 |
+
|
| 120 |
+
Built with:
|
| 121 |
+
- [Unsloth](https://github.com/unslothai/unsloth) β 2x faster fine-tuning
|
| 122 |
+
- [TRL](https://github.com/huggingface/trl) β SFTTrainer
|
| 123 |
+
- [Qwen3-Coder-14B](https://huggingface.co/Qwen/Qwen3-Coder-14B) β base model
|
| 124 |
+
- [MLX](https://github.com/ml-explore/mlx) β dataset generation on Apple Silicon
|
| 125 |
+
- [Claude Code](https://claude.ai/code) β dataset pipeline and training infrastructure
|
| 126 |
+
- [Dioxus](https://dioxuslabs.com) β the framework this model specializes in
|