Instructions to use leandroxk/ornith-1.0-9b-kubeops-GGUF 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 leandroxk/ornith-1.0-9b-kubeops-GGUF 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 leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf leandroxk/ornith-1.0-9b-kubeops-GGUF: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 leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf leandroxk/ornith-1.0-9b-kubeops-GGUF: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 leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
Use Docker
docker model run hf.co/leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "leandroxk/ornith-1.0-9b-kubeops-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "leandroxk/ornith-1.0-9b-kubeops-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
- Ollama
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with Ollama:
ollama run hf.co/leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
- Unsloth Studio
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF 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 leandroxk/ornith-1.0-9b-kubeops-GGUF 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 leandroxk/ornith-1.0-9b-kubeops-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for leandroxk/ornith-1.0-9b-kubeops-GGUF to start chatting
- Pi
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with Docker Model Runner:
docker model run hf.co/leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
- Lemonade
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ornith-1.0-9b-kubeops-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf leandroxk/ornith-1.0-9b-kubeops-GGUF: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 leandroxk/ornith-1.0-9b-kubeops-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use leandroxk/ornith-1.0-9b-kubeops-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf leandroxk/ornith-1.0-9b-kubeops-GGUF: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 "leandroxk/ornith-1.0-9b-kubeops-GGUF: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"
Ornith-1.0-9B-KubeOps-GGUF 0.2.0
Transformers model · GGUF quantizations
GGUF quantizations of leandroxk/ornith-1.0-9b-kubeops, a Brazilian Portuguese fine-tune specialized in evidence-driven Kubernetes incident diagnosis and safe, authorized recovery.
Version 0.2.0 adds a second, fully agentic operational fine-tuning stage. It emphasizes deciding whether a change is necessary, identifying the actual source of truth, executing the smallest authorized and reversible correction, observing the resulting state, and validating the affected service end to end.
See the main model card for training data, evaluation results, recommended uses, limitations, and safety guidance.
Files
| File | Quantization | Approximate size | Suggested use |
|---|---|---|---|
ornith-1.0-9b-kubeops-f16.gguf |
F16 | 16.69 GiB | highest fidelity; requires more memory |
ornith-1.0-9b-kubeops-q8.gguf |
Q8_0 | 8.87 GiB | high fidelity with lower memory use than F16 |
ornith-1.0-9b-kubeops-q6_k.gguf |
Q6_K | 6.85 GiB | recommended balance of quality and memory use |
ornith-1.0-9b-kubeops-q4_k_m.gguf |
Q4_K_M | 5.24 GiB | lower memory use for constrained environments |
These sizes cover the model files only. Inference also requires memory for the context, KV cache, and runtime overhead.
Download
pip install -U "huggingface_hub"
hf download \
leandroxk/ornith-1.0-9b-kubeops-GGUF \
ornith-1.0-9b-kubeops-q6_k.gguf \
--local-dir .
llama.cpp usage
Use a recent version of llama.cpp:
./llama-cli \
-m ornith-1.0-9b-kubeops-q6_k.gguf \
-cnv \
-p "Investigate why the checkout Service has no Endpoints. Apply the minimum safe correction only if explicitly authorized."
To configure the context and GPU offload:
./llama-cli \
-m ornith-1.0-9b-kubeops-q6_k.gguf \
-cnv \
-c 8192 \
-ngl 99
The architecture declares a 262,144-token context window, but version 0.2.0 was fine-tuned with sequences of up to 8,192 tokens. Very long contexts have not been specifically evaluated for this model.
Tool use
The source model can emit XML <tool_call> blocks. The 0.2.0 training dataset
used a generic run_command tool for diagnostic and corrective commands.
The host application must decide which commands are allowed, execute them, return their results to the model, and enforce authorization. Use command allowlists, execution and output limits, separate read-only and mutating permissions, redact Secrets, and require explicit approval before every mutation.
Limitations and safety
GGUF conversion does not change the limitations of the source model. The model may still invent identifiers, command output, causes, or successful recovery; select the wrong source of truth; or suggest commands that are incompatible with the cluster.
A successful command exit code is not proof of recovery. Observe the workload after a change and separately validate the Service, EndpointSlice, route, or affected application flow.
Quantization may reduce quality relative to the FP16 checkpoint. No comparative benchmark has been completed across F16, Q8_0, Q6_K, and Q4_K_M for version 0.2.0.
License
Distributed under the MIT license inherited from deepreinforce-ai/Ornith-1.0-9B.
- Downloads last month
- 451
Model tree for leandroxk/ornith-1.0-9b-kubeops-GGUF
Base model
ornith-ai/Ornith-1.0-9B