Instructions to use VertexAGI/prism-creative-1-5-mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use VertexAGI/prism-creative-1-5-mini 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("VertexAGI/prism-creative-1-5-mini") 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 Settings
- llama.cpp
How to use VertexAGI/prism-creative-1-5-mini with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf VertexAGI/prism-creative-1-5-mini:Q4_K_M # Run inference directly in the terminal: llama cli -hf VertexAGI/prism-creative-1-5-mini:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf VertexAGI/prism-creative-1-5-mini:Q4_K_M # Run inference directly in the terminal: llama cli -hf VertexAGI/prism-creative-1-5-mini: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 VertexAGI/prism-creative-1-5-mini:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf VertexAGI/prism-creative-1-5-mini: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 VertexAGI/prism-creative-1-5-mini:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf VertexAGI/prism-creative-1-5-mini:Q4_K_M
Use Docker
docker model run hf.co/VertexAGI/prism-creative-1-5-mini:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use VertexAGI/prism-creative-1-5-mini with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "VertexAGI/prism-creative-1-5-mini" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "VertexAGI/prism-creative-1-5-mini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/VertexAGI/prism-creative-1-5-mini:Q4_K_M
- Ollama
How to use VertexAGI/prism-creative-1-5-mini with Ollama:
ollama run hf.co/VertexAGI/prism-creative-1-5-mini:Q4_K_M
- Unsloth Studio
How to use VertexAGI/prism-creative-1-5-mini 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 VertexAGI/prism-creative-1-5-mini 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 VertexAGI/prism-creative-1-5-mini to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for VertexAGI/prism-creative-1-5-mini to start chatting
- Pi
How to use VertexAGI/prism-creative-1-5-mini with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "VertexAGI/prism-creative-1-5-mini"
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": "VertexAGI/prism-creative-1-5-mini" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use VertexAGI/prism-creative-1-5-mini with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "VertexAGI/prism-creative-1-5-mini"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "VertexAGI/prism-creative-1-5-mini" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "VertexAGI/prism-creative-1-5-mini", "messages": [ {"role": "user", "content": "Hello"} ] }' - Docker Model Runner
How to use VertexAGI/prism-creative-1-5-mini with Docker Model Runner:
docker model run hf.co/VertexAGI/prism-creative-1-5-mini:Q4_K_M
- Lemonade
How to use VertexAGI/prism-creative-1-5-mini with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull VertexAGI/prism-creative-1-5-mini:Q4_K_M
Run and chat with the model
lemonade run user.prism-creative-1-5-mini-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use VertexAGI/prism-creative-1-5-mini 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 "VertexAGI/prism-creative-1-5-mini"
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 VertexAGI/prism-creative-1-5-mini
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use VertexAGI/prism-creative-1-5-mini with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "VertexAGI/prism-creative-1-5-mini"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "VertexAGI/prism-creative-1-5-mini" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Prism Creative 1.5 Mini
A compact local writing specialist -- creation, editing, and revision, distilled from five teacher models into Qwen3-4B
Overview
Prism Creative 1.5 Mini expands on 1 Mini's story-generation focus into a broader writing specialist: creative prose, poetry, editing, rewriting, revision, tone control, style transformation, and tightly constrained writing. Fine-tuned via LoRA on Qwen3-4B-Instruct-2507, the same base as 1 Mini, on a dataset distilled from five different teacher models rather than one, so the model learns the shared underlying skill instead of imitating a single teacher's voice.
Part of the Prism family of creative and roleplay models.
Training
- Base model:
mlx-community/Qwen3-4B-Instruct-2507-4bit - Teachers: a mix of
nvidia/nemotron-3-nano-30b-a3b,deepseek-ai/deepseek-v4-flash-0731,nvidia/nemotron-3.5-lightning-30b-a3b,nvidia/nemotron-3-ultra-550b-a55b, andz-ai/glm-5.2(all via NVIDIA NIM's free tier), blended for stylistic diversity - Dataset: ~5,000 examples across 11 categories -- constrained prose, free-verse and formal poetry, grammar/clarity editing, tone-shift and tightening rewrites, restructuring, preserve/forbid-phrase constraints, style transfer, multi-constraint tasks, and correction-vs-complete-rewrite pairs
- Method: LoRA fine-tuning (rank 8, 16 layers), 12,000 iterations
- Best validation loss: 0.534 (reached at iteration 2,200 -- this checkpoint was used for fusing/publishing rather than the final iteration, since val loss plateaued and oscillated without further improvement for the rest of the run)
Evaluation
A held-out base-vs-tuned comparison (22 fresh scenarios spanning all 11 categories) shows a clear, measurable gain in the target skills:
| Metric | Base Qwen3-4B-Instruct | Prism Creative 1.5 Mini |
|---|---|---|
| Leaked planning/meta text | 0/22 | 0/22 |
| Avg 4-gram repetition ratio | 0.0405 | 0.0125 (3.2x lower) |
| Avg word count | 116.4 | 72.5 |
The base model was already clean of reasoning leaks (this is Qwen3's Instruct variant), so the real gains are in conciseness and constraint discipline: on editing/tightening tasks the base model tends to ramble even when asked to cut a passage down, while the tuned model reliably produces a genuinely tightened result. On constraint tasks (e.g. "the rewrite must include this exact phrase"), the tuned model follows the instruction consistently; the base model is inconsistent about it. Repetition dropped substantially too. Poetry quality is comparable between the two -- both produce coherent, well-formed verse -- with the tuned model trending slightly more controlled and image-focused versus the base's more ornate tendency.
Formats available
This repo includes both:
| Format | File | Notes |
|---|---|---|
| MLX (4-bit) | model.safetensors + config |
For Apple Silicon via mlx-lm |
| GGUF (Q4_K_M) | prism_creative_1_5_mini_Q4_K_M.gguf |
For llama.cpp and compatible runtimes (LM Studio, Ollama, etc.) |
Usage -- MLX
from mlx_lm import load, generate
model, tokenizer = load("VertexAGI/prism-creative-1-5-mini")
prompt = "Rewrite the following passage to tighten it by 40% while keeping every essential detail:\n\n[your passage here]"
messages = [{"role": "user", "content": prompt}]
text = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
response = generate(model, tokenizer, prompt=text, max_tokens=500)
print(response)
Usage -- GGUF (llama.cpp)
Like other Qwen3-based Prism models, the chat template only suppresses the model's reasoning trace when the runtime explicitly signals non-thinking mode. mlx-lm does this automatically; with llama.cpp pass -rea off (or --reasoning off), otherwise you'll see a <think>...</think> block before the actual output even though the underlying behavior is identical:
llama-cli -hf VertexAGI/prism-creative-1-5-mini -m prism_creative_1_5_mini_Q4_K_M.gguf -st -rea off -sys "You are an elite writing specialist -- equally skilled at creative prose, poetry, editing, rewriting, and tightly constrained writing tasks. Follow every requirement in the prompt precisely: length, tone, point of view, form, preserved/forbidden phrases, and any editing instructions. When editing or rewriting existing text, respect the specific instruction -- a light correction pass should change little, a complete rewrite should change freely, but either way preserve meaning unless told otherwise." -p "Write a haiku about dawn."
System prompt
For best results, use the system prompt the model was trained with:
You are an elite writing specialist -- equally skilled at creative prose, poetry, editing, rewriting, and tightly constrained writing tasks. Follow every requirement in the prompt precisely: length, tone, point of view, form, preserved/forbidden phrases, and any editing instructions. When editing or rewriting existing text, respect the specific instruction -- a light correction pass should change little, a complete rewrite should change freely, but either way preserve meaning unless told otherwise.
Limitations
This is a 4B-parameter model fine-tuned via LoRA on a moderately sized (~5,000-example) dataset -- capable but not infallible. Like any distilled model it inherits some of its teachers' stylistic tendencies, and very unusual poetic forms or highly technical editing tasks may still trip it up occasionally. Treat outputs as a strong starting point, not a guaranteed-perfect final one.
License
Apache 2.0, inherited from the Qwen3 base model.
- Downloads last month
- 98
4-bit
Model tree for VertexAGI/prism-creative-1-5-mini
Base model
Qwen/Qwen3-4B-Instruct-2507