Instructions to use Etherlabs/finance-ops-triage-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Etherlabs/finance-ops-triage-v0.1 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("Etherlabs/finance-ops-triage-v0.1") 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 Etherlabs/finance-ops-triage-v0.1 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 Etherlabs/finance-ops-triage-v0.1:Q4_K_M # Run inference directly in the terminal: llama cli -hf Etherlabs/finance-ops-triage-v0.1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Etherlabs/finance-ops-triage-v0.1:Q4_K_M # Run inference directly in the terminal: llama cli -hf Etherlabs/finance-ops-triage-v0.1: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 Etherlabs/finance-ops-triage-v0.1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Etherlabs/finance-ops-triage-v0.1: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 Etherlabs/finance-ops-triage-v0.1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Etherlabs/finance-ops-triage-v0.1:Q4_K_M
Use Docker
docker model run hf.co/Etherlabs/finance-ops-triage-v0.1:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Etherlabs/finance-ops-triage-v0.1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Etherlabs/finance-ops-triage-v0.1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Etherlabs/finance-ops-triage-v0.1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Etherlabs/finance-ops-triage-v0.1:Q4_K_M
- Ollama
How to use Etherlabs/finance-ops-triage-v0.1 with Ollama:
ollama run hf.co/Etherlabs/finance-ops-triage-v0.1:Q4_K_M
- Unsloth Desktop
- Pi
How to use Etherlabs/finance-ops-triage-v0.1 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Etherlabs/finance-ops-triage-v0.1"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Etherlabs/finance-ops-triage-v0.1" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use Etherlabs/finance-ops-triage-v0.1 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "Etherlabs/finance-ops-triage-v0.1"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Etherlabs/finance-ops-triage-v0.1" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Etherlabs/finance-ops-triage-v0.1", "messages": [ {"role": "user", "content": "Hello"} ] }' - Docker Model Runner
How to use Etherlabs/finance-ops-triage-v0.1 with Docker Model Runner:
docker model run hf.co/Etherlabs/finance-ops-triage-v0.1:Q4_K_M
- Lemonade
How to use Etherlabs/finance-ops-triage-v0.1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Etherlabs/finance-ops-triage-v0.1:Q4_K_M
Run and chat with the model
lemonade run user.finance-ops-triage-v0.1-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Etherlabs/finance-ops-triage-v0.1 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 "Etherlabs/finance-ops-triage-v0.1"
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 Etherlabs/finance-ops-triage-v0.1
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Etherlabs/finance-ops-triage-v0.1 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Etherlabs/finance-ops-triage-v0.1"
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 "Etherlabs/finance-ops-triage-v0.1" \ --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"
Finance Ops Triage v0.1
An educational Unsloth MLX fine-tuning and local deployment experiment by Ugo Chukwu. Deployment succeeded; model quality remains imperfect.
Code and complete experiment report · Dataset
Files and compatibility
Qwen2.5-0.5B-Instruct.Q4_K_M.gguf: exported local inference model, 397,807,936 bytes (397.81 decimal MB). Its GGUF metadata identifies Qwen2 architecture and file type 15 (Q4_K_M). The earlier UI estimate of roughly 291 MB was not the measured file size.adapter/: original Unsloth MLX adapter, tokenizer, chat template, configuration and row-bound seed metadata.adapter/checkpoint-21/: final checkpoint, trainer history and optimizer state, retained as experiment evidence. Resume has not been tested.model_artifacts.json: SHA-256 hashes and sizes for the original model files.
The saved adapter requires Unsloth MLX runtime quantization. Do not assume standard Transformers/PEFT loading works. The verified deployment path was loading the GGUF in Unsloth and calling its authenticated OpenAI-compatible localhost API. No hosted inference deployment or automatic Hub inference compatibility is claimed.
Training
MacBook Pro M5, 24 GB; Qwen2.5-0.5B-Instruct-bnb-4bit; 50 training examples, 15 validation examples; 3 epochs; 512-token context; learning rate 2e-4; batch 2 × accumulation 4 = 8; 21 optimizer steps. Adapter rank 16, scale 1.0, dropout 0.0; 24 layers; q/k/v/o and gate/up/down projections. Runtime quantization was 4-bit affine, group size 64.
Final saved training loss: 0.1580784768. Validation loss declined from approximately 1.9384 to 0.3987. Loss is not task accuracy.
Evaluation and limitations
Historical manual scoring on five validation cases, one point each for category, severity, single JSON, and sensible action:
| Criterion | Base | Fine-tuned |
|---|---|---|
| Category | 3/5 | 3/5 |
| Severity | 2/5 | 1/5 |
| Single JSON | 2/5 | 4/5 |
| Next action | 1/5 | 4/5 |
| Composite | 8/20 (40%) | 12/20 (60%) |
These are validation cases, not an untouched test set. The scores were collected before GGUF export; no matched quantization benchmark was run. The fine-tune improved formatting and operational wording while category boundaries remained weak, severity tended toward medium, and one response continued with extra JSON objects. Later GGUF API calls worked but still misclassified missing and duplicate transaction cases.
This is not a production-qualified model, financial policy, or system that can safely change a ledger. Generated actions require review. No robust schema enforcement is built into the original client. No controlled latency benchmark or general reliability claim is made.
Local usage
Download the GGUF, add its folder to Unsloth's on-device Model Hub, and load the model. Keep the local API running. The archived client uses http://127.0.0.1:8888/v1, model ID Qwen2.5-0.5B-Instruct.Q4_K_M, and a server key supplied through UNSLOTH_API_KEY. Follow the GitHub README for setup. No credentials are included.
Provenance and license
Derived from the Qwen2.5-0.5B instruction model, fine-tuned with the associated illustrative Finance Ops Triage dataset and exported through Unsloth. The upstream Apache-2.0 license is included. This repository contains a modified model and records its fine-tuning and quantization here. The original source checkpoints and data remain preserved locally.
- Downloads last month
- 5
Model tree for Etherlabs/finance-ops-triage-v0.1
Base model
Qwen/Qwen2.5-0.5B