Instructions to use appout/houston-ticket-summarizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use appout/houston-ticket-summarizer 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 appout/houston-ticket-summarizer:Q8_0 # Run inference directly in the terminal: llama cli -hf appout/houston-ticket-summarizer:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf appout/houston-ticket-summarizer:Q8_0 # Run inference directly in the terminal: llama cli -hf appout/houston-ticket-summarizer:Q8_0
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 appout/houston-ticket-summarizer:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf appout/houston-ticket-summarizer:Q8_0
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 appout/houston-ticket-summarizer:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf appout/houston-ticket-summarizer:Q8_0
Use Docker
docker model run hf.co/appout/houston-ticket-summarizer:Q8_0
- LM Studio
- Jan
- vLLM
How to use appout/houston-ticket-summarizer with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "appout/houston-ticket-summarizer" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appout/houston-ticket-summarizer", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/appout/houston-ticket-summarizer:Q8_0
- Ollama
How to use appout/houston-ticket-summarizer with Ollama:
ollama run hf.co/appout/houston-ticket-summarizer:Q8_0
- Unsloth Studio
How to use appout/houston-ticket-summarizer 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 appout/houston-ticket-summarizer 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 appout/houston-ticket-summarizer to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for appout/houston-ticket-summarizer to start chatting
- Pi
How to use appout/houston-ticket-summarizer with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf appout/houston-ticket-summarizer:Q8_0
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": "appout/houston-ticket-summarizer:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use appout/houston-ticket-summarizer with Docker Model Runner:
docker model run hf.co/appout/houston-ticket-summarizer:Q8_0
- Lemonade
How to use appout/houston-ticket-summarizer with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull appout/houston-ticket-summarizer:Q8_0
Run and chat with the model
lemonade run user.houston-ticket-summarizer-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use appout/houston-ticket-summarizer with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf appout/houston-ticket-summarizer:Q8_0
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 appout/houston-ticket-summarizer:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use appout/houston-ticket-summarizer with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf appout/houston-ticket-summarizer:Q8_0
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 "appout/houston-ticket-summarizer:Q8_0" \ --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"
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf appout/houston-ticket-summarizer:Q8_0# Run inference directly in the terminal:
llama cli -hf appout/houston-ticket-summarizer:Q8_0Use 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 appout/houston-ticket-summarizer:Q8_0# Run inference directly in the terminal:
./llama-cli -hf appout/houston-ticket-summarizer:Q8_0Build 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 appout/houston-ticket-summarizer:Q8_0# Run inference directly in the terminal:
./build/bin/llama-cli -hf appout/houston-ticket-summarizer:Q8_0Use Docker
docker model run hf.co/appout/houston-ticket-summarizer:Q8_0Houston ticket summarizer
A fine-tuned Qwen3-0.6B that summarizes support tickets as three lines. Small enough to run entirely in the browser (llama.cpp / WASM), so ticket text never leaves the agent's machine.
Problem: what was actually wrong
Action: what the support team did
Outcome: where it ended up
Results
Measured on 150 held-out tickets the model never saw during training, graded against their source text:
| base Qwen3-0.6B | this model | |
|---|---|---|
| Usable summary | 24% | 75% |
| Problem correct | 83% | 87% |
| Action correct | 57% | 89% |
| Outcome correct | 33% | 90% |
| Invents nothing | 28% | 76% |
Files
| File | Size | Notes |
|---|---|---|
houston-0.6b-q8_0.gguf |
610 MB | the shipped build, 75% usable |
Q4_K_M was also built (379 MB, 71% usable) and is not faster in WASM, where dequantization compute rather than memory bandwidth is the bottleneck.
Prompt contract
Quality drops silently if this is not followed exactly.
System prompt, verbatim:
Summarize this support ticket as Problem / Action / Outcome.
User message, this exact layout:
Ticket T-2811 | Unique number: 386515 | Tenant: Example Co | Client: Assem
Title: Delete user
Description: Assem asked to delete the user below.
Comments:
- Three users deleted, attached screenshot before and after
- mail scheduled to be sent to the customer 9:00 am tomorrow
- Header parts are joined by
|; omit any that are empty. - No author names on comments. Training data had none, and adding them makes the model attribute actions to whichever name it sees.
- No workflow events (
Ticket opened,Ticket acquired,bulk-close,System auto assigned...). Short human notes likeUpdated the clientordonemust be kept: that is where the outcome lives. - Emails and phone numbers masked as
<email>/<phone>. - Optional trailing
Status: <status>line when a status is known.
Thinking must be disabled. The assistant turn is pre-filled with an empty think block:
<|im_start|>system
Summarize this support ticket as Problem / Action / Outcome.<|im_end|>
<|im_start|>user
{ticket}<|im_end|>
<|im_start|>assistant
<think>
</think>
With Qwen3's default template the model reasons out loud and exhausts its token budget before answering.
Decode: greedy (temperature 0), max_tokens 200, stop on <|im_end|>.
Training
| Base | Qwen/Qwen3-0.6B |
| Method | full fine-tune, not LoRA (at 0.6B the optimizer state fits one GPU, so LoRA only adds a constraint) |
| Data | 1,057 ticket/summary pairs distilled from a larger teacher model, 60 val, 150 frozen holdout |
| LR | 1e-5 (LoRA-scale rates destroy a full fine-tune) |
| Epochs | 3, effective batch 16, max_len 2048, seed 1337 |
| Loss | assistant tokens only, prompt masked |
| Hardware | one Colab L4, ~15 min |
Training data is internal support tickets with emails and phone numbers redacted. It is not released.
Limitations
- English only. The corpus was English support tickets. Arabic is not covered.
- ~25% of summaries assert something the ticket does not say, almost always reading a request as a completed action ("the team removed X" when the ticket only asks for X to be removed). The teacher model gets these right, so this is 0.6B capacity, not bad data. A larger student is the fix.
- Stale outcomes. On long threads the model sometimes reports an intermediate state instead of the final one.
- Summary length is not controlled; it produces three lines, not a length budget.
- Not a general summarizer. It expects the layout above and degrades on anything else.
Intended use
Showing a support agent, at a glance, what a ticket is about. Not for automated decisions, ticket routing, or anything where an unsupported assertion in one summary in four would matter.
- Downloads last month
- -
8-bit
Install (macOS, Linux)
# Start a local OpenAI-compatible server with a web UI: llama serve -hf appout/houston-ticket-summarizer:Q8_0# Run inference directly in the terminal: llama cli -hf appout/houston-ticket-summarizer:Q8_0