Text Generation
GGUF
English
dictation
speech-to-text
text-cleanup
post-asr
qwen3.5
llama.cpp
on-device
conversational
Instructions to use Quobi/Quill with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Quobi/Quill with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Quobi/Quill", filename="quill-0.8b-Q4_K_M.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 Quobi/Quill 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 Quobi/Quill:Q4_K_M # Run inference directly in the terminal: llama cli -hf Quobi/Quill:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Quobi/Quill:Q4_K_M # Run inference directly in the terminal: llama cli -hf Quobi/Quill: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 Quobi/Quill:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Quobi/Quill: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 Quobi/Quill:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Quobi/Quill:Q4_K_M
Use Docker
docker model run hf.co/Quobi/Quill:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Quobi/Quill with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Quobi/Quill" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Quobi/Quill", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Quobi/Quill:Q4_K_M
- Ollama
How to use Quobi/Quill with Ollama:
ollama run hf.co/Quobi/Quill:Q4_K_M
- Unsloth Studio
How to use Quobi/Quill 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 Quobi/Quill 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 Quobi/Quill to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Quobi/Quill to start chatting
- Pi
How to use Quobi/Quill with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Quobi/Quill: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": "Quobi/Quill:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Quobi/Quill with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Quobi/Quill: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 Quobi/Quill:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Quobi/Quill with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Quobi/Quill:Q4_K_M
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 "Quobi/Quill:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use Quobi/Quill with Docker Model Runner:
docker model run hf.co/Quobi/Quill:Q4_K_M
- Lemonade
How to use Quobi/Quill with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Quobi/Quill:Q4_K_M
Run and chat with the model
lemonade run user.Quill-Q4_K_M
List all available models
lemonade list
docs: remove em dashes from the model card
Browse files
README.md
CHANGED
|
@@ -20,13 +20,13 @@ pipeline_tag: text-generation
|
|
| 20 |
inference: false
|
| 21 |
---
|
| 22 |
|
| 23 |
-
# Quill
|
| 24 |
|
| 25 |
**Quill** is a family of small language models that turn raw speech-to-text
|
| 26 |
-
output into clean, written text
|
| 27 |
filler words (*um*, *uh*, *like*, *you know*), fixes punctuation and
|
| 28 |
capitalization, repairs spoken self-corrections and false starts, and collapses
|
| 29 |
-
the stutters and repeats that dictation produces
|
| 30 |
or sending anything to the cloud.
|
| 31 |
|
| 32 |
Quill is the cleanup stage of **[Quobi](https://huggingface.co/quobi)**, a
|
|
@@ -43,7 +43,7 @@ Quill rewrites that into what you actually meant to write:
|
|
| 43 |
|
| 44 |
> **"So I was thinking maybe we could meet up at three."**
|
| 45 |
|
| 46 |
-
It is **not** a chatbot and not an instruction-following assistant
|
| 47 |
job: clean dictated text. Feeding it questions or commands will not get answers;
|
| 48 |
it will just clean the text.
|
| 49 |
|
|
@@ -52,7 +52,7 @@ it will just clean the text.
|
|
| 52 |
Quill is a fine-tune of **[Qwen3.5](https://huggingface.co/Qwen)** by the Qwen
|
| 53 |
team (Alibaba), used under the **Apache 2.0** license. Qwen3.5 is a hybrid
|
| 54 |
architecture interleaving **Mamba-2 / state-space (SSM)** layers with periodic
|
| 55 |
-
full-attention layers, which makes the small sizes fast and memory-light
|
| 56 |
well suited to on-device, low-latency cleanup. All credit for the base models
|
| 57 |
goes to the Qwen team; Quill only adds task-specific fine-tuning.
|
| 58 |
|
|
@@ -66,7 +66,7 @@ goes to the Qwen team; Quill only adds task-specific fine-tuning.
|
|
| 66 |
|
| 67 |
| Tier | Best for | Behavior |
|
| 68 |
|---|---|---|
|
| 69 |
-
| **0.8B** | Phones and any CPU (recommended default) | **Verbatim**
|
| 70 |
| **2B** | Mid-range machines / a modest GPU | Verbatim + light tidying |
|
| 71 |
| **4B** | Desktops with a GPU | Verbatim + tidying + light formatting |
|
| 72 |
|
|
@@ -82,7 +82,7 @@ the larger tiers take on more rewriting and structure.
|
|
| 82 |
llama-server -m quill-0.8b-Q4_K_M.gguf --host 127.0.0.1 --port 8080 -ngl 99
|
| 83 |
```
|
| 84 |
|
| 85 |
-
**Prompt format
|
| 86 |
with an **empty think block** so the model does not emit chain-of-thought:
|
| 87 |
|
| 88 |
```
|
|
@@ -99,7 +99,7 @@ yeah so um the meeting is gonna be like at uh three thirty tomorrow i think<|im_
|
|
| 99 |
|
| 100 |
→ **"The meeting is at 3:30 tomorrow."**
|
| 101 |
|
| 102 |
-
> ⚠️ Do **not** pass `--jinja`
|
| 103 |
> raw prompt above (or the `/completion` endpoint) with the pre-seeded empty
|
| 104 |
> `<think></think>` block. Greedy decoding (`temperature = 0`) is recommended.
|
| 105 |
|
|
|
|
| 20 |
inference: false
|
| 21 |
---
|
| 22 |
|
| 23 |
+
# Quill: on-device dictation cleanup models
|
| 24 |
|
| 25 |
**Quill** is a family of small language models that turn raw speech-to-text
|
| 26 |
+
output into clean, written text, **entirely on your own device**. It removes
|
| 27 |
filler words (*um*, *uh*, *like*, *you know*), fixes punctuation and
|
| 28 |
capitalization, repairs spoken self-corrections and false starts, and collapses
|
| 29 |
+
the stutters and repeats that dictation produces, without changing your words
|
| 30 |
or sending anything to the cloud.
|
| 31 |
|
| 32 |
Quill is the cleanup stage of **[Quobi](https://huggingface.co/quobi)**, a
|
|
|
|
| 43 |
|
| 44 |
> **"So I was thinking maybe we could meet up at three."**
|
| 45 |
|
| 46 |
+
It is **not** a chatbot and not an instruction-following assistant. It does one
|
| 47 |
job: clean dictated text. Feeding it questions or commands will not get answers;
|
| 48 |
it will just clean the text.
|
| 49 |
|
|
|
|
| 52 |
Quill is a fine-tune of **[Qwen3.5](https://huggingface.co/Qwen)** by the Qwen
|
| 53 |
team (Alibaba), used under the **Apache 2.0** license. Qwen3.5 is a hybrid
|
| 54 |
architecture interleaving **Mamba-2 / state-space (SSM)** layers with periodic
|
| 55 |
+
full-attention layers, which makes the small sizes fast and memory-light,
|
| 56 |
well suited to on-device, low-latency cleanup. All credit for the base models
|
| 57 |
goes to the Qwen team; Quill only adds task-specific fine-tuning.
|
| 58 |
|
|
|
|
| 66 |
|
| 67 |
| Tier | Best for | Behavior |
|
| 68 |
|---|---|---|
|
| 69 |
+
| **0.8B** | Phones and any CPU (recommended default) | **Verbatim**: faithful cleanup, no rephrasing |
|
| 70 |
| **2B** | Mid-range machines / a modest GPU | Verbatim + light tidying |
|
| 71 |
| **4B** | Desktops with a GPU | Verbatim + tidying + light formatting |
|
| 72 |
|
|
|
|
| 82 |
llama-server -m quill-0.8b-Q4_K_M.gguf --host 127.0.0.1 --port 8080 -ngl 99
|
| 83 |
```
|
| 84 |
|
| 85 |
+
**Prompt format (important).** Use ChatML with the assistant turn pre-seeded
|
| 86 |
with an **empty think block** so the model does not emit chain-of-thought:
|
| 87 |
|
| 88 |
```
|
|
|
|
| 99 |
|
| 100 |
→ **"The meeting is at 3:30 tomorrow."**
|
| 101 |
|
| 102 |
+
> ⚠️ Do **not** pass `--jinja`. It re-enables chain-of-thought leakage. Use the
|
| 103 |
> raw prompt above (or the `/completion` endpoint) with the pre-seeded empty
|
| 104 |
> `<think></think>` block. Greedy decoding (`temperature = 0`) is recommended.
|
| 105 |
|