Instructions to use mcphorizon/mcp-horizon-support-v1 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 mcphorizon/mcp-horizon-support-v1 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 mcphorizon/mcp-horizon-support-v1:Q4_K_M # Run inference directly in the terminal: llama cli -hf mcphorizon/mcp-horizon-support-v1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mcphorizon/mcp-horizon-support-v1:Q4_K_M # Run inference directly in the terminal: llama cli -hf mcphorizon/mcp-horizon-support-v1: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 mcphorizon/mcp-horizon-support-v1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mcphorizon/mcp-horizon-support-v1: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 mcphorizon/mcp-horizon-support-v1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mcphorizon/mcp-horizon-support-v1:Q4_K_M
Use Docker
docker model run hf.co/mcphorizon/mcp-horizon-support-v1:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mcphorizon/mcp-horizon-support-v1 with Ollama:
ollama run hf.co/mcphorizon/mcp-horizon-support-v1:Q4_K_M
- Unsloth Studio
How to use mcphorizon/mcp-horizon-support-v1 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 mcphorizon/mcp-horizon-support-v1 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 mcphorizon/mcp-horizon-support-v1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mcphorizon/mcp-horizon-support-v1 to start chatting
- Docker Model Runner
How to use mcphorizon/mcp-horizon-support-v1 with Docker Model Runner:
docker model run hf.co/mcphorizon/mcp-horizon-support-v1:Q4_K_M
- Lemonade
How to use mcphorizon/mcp-horizon-support-v1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mcphorizon/mcp-horizon-support-v1:Q4_K_M
Run and chat with the model
lemonade run user.mcp-horizon-support-v1-Q4_K_M
List all available models
lemonade list
- Atomic Chat
mcp-horizon-support-v1
Fine-tuned Qwen3-4B on MCP Horizon product documentation for question-answering and support use cases.
Base model
Qwen/Qwen3-4B — fine-tuned with QLoRA (4-bit) via Unsloth.
Training
| Setting | Value |
|---|---|
| Method | QLoRA (LoRA rank 16, alpha 32) |
| Epochs | 5 |
| Training examples | 534 |
| Final loss | 0.7498 |
| Hardware | NVIDIA RTX 4070 12GB |
Evaluation (DeepEval, 60 examples)
| Metric | Score | Pass Rate |
|---|---|---|
| Answer Relevancy | 0.86 | 80% |
| Correctness (GEval) | 0.32 | 22% |
| Completeness (GEval) | 0.35 | 25% |
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "mcphorizon/mcp-horizon-support-v1"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id, torch_dtype=torch.bfloat16, device_map="auto"
)
messages = [{"role": "user", "content": "How do I configure access controls in MCP Horizon?"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
Ollama
A GGUF Q4_K_M version is also available for use with Ollama/llama.cpp.
- Downloads last month
- 84
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support