Instructions to use Spakie/JewGPT-Qwen3.5-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Spakie/JewGPT-Qwen3.5-9B with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("Spakie/JewGPT-Qwen3.5-9B") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
- Pi new
How to use Spakie/JewGPT-Qwen3.5-9B with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Spakie/JewGPT-Qwen3.5-9B"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Spakie/JewGPT-Qwen3.5-9B" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Spakie/JewGPT-Qwen3.5-9B with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Spakie/JewGPT-Qwen3.5-9B"
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 Spakie/JewGPT-Qwen3.5-9B
Run Hermes
hermes
- MLX LM
How to use Spakie/JewGPT-Qwen3.5-9B with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "Spakie/JewGPT-Qwen3.5-9B"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Spakie/JewGPT-Qwen3.5-9B" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Spakie/JewGPT-Qwen3.5-9B", "messages": [ {"role": "user", "content": "Hello"} ] }'
JewGPT-Qwen3.5-9B
JewGPT-Qwen3.5-9B is a fused MLX checkpoint derived from mlx-community/Qwen3.5-9B-BF16.
It was produced by fine-tuning a LoRA adapter on a small custom chat dataset and then merging
that adapter back into the base model weights.
Overview
- Base model:
mlx-community/Qwen3.5-9B-BF16 - Fine-tuning method: LoRA
- Fused checkpoint:
fused_model_0001000 - Intended task: text generation / chat-style responses
Training Details
The local training configuration in this project indicates:
- Training dataset:
jewgpt_dataset/train.jsonl - Dataset size: 102 chat examples
- Iterations: 1000
- Learning rate:
1e-5 - Batch size: 1
- Gradient accumulation steps: 1
- Max sequence length: 2048
- LoRA rank: 8
- LoRA dropout: 0.0
- LoRA scale: 20.0
- Targeted layers: 16
- Seed: 0
Behavior Notes
This model is highly specialized and reflects the narrow tone, framing, and persona present in its training examples. It should be treated as an experimental derivative rather than a general purpose assistant.
Because the fine-tuning dataset is small and strongly opinionated, outputs may be:
- roleplay-heavy
- politically biased
- overconfident
- unreliable for factual or safety-critical use
Limitations
- Not evaluated against standard benchmarks
- Not suitable as a source of factual political analysis
- Not suitable for high-stakes use
- Likely to overfit the training persona and response style
Files
This repository contains the merged model shards, tokenizer files, and chat template needed to run the fused checkpoint.
License
This release is a derivative of Qwen3.5-9B and follows the upstream licensing information linked
above. Please review the base model license and ensure your use complies with it.
- Downloads last month
- 20
Quantized