Instructions to use KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M
Use Docker
docker model run hf.co/KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF with Ollama:
ollama run hf.co/KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M
- Unsloth Studio
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF to start chatting
- Pi
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF: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": "KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf KikoCis/Ornith-1.0-9B-Ollama-fixed-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 "KikoCis/Ornith-1.0-9B-Ollama-fixed-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"
- Docker Model Runner
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF with Docker Model Runner:
docker model run hf.co/KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M
- Lemonade
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ornith-1.0-9B-Ollama-fixed-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-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 KikoCis/Ornith-1.0-9B-Ollama-fixed-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
File size: 2,573 Bytes
1d1dfec | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 12329adaf4ee2d7ec62f12007cf6bab22022e1d660dc28b87af3f73ab2f20124 Ornith-1.0-9B-IQ4_XS.gguf e15bf80694c53a82dc0dd1be337231d01f0ebd99fd14bdcc6490ac6ccceedd3b Ornith-1.0-9B-Q3_K_M.gguf 43823f132a2e9aa0b14c2c453484f843cfa83bb4bf821450951e122bbe750b65 Ornith-1.0-9B-Q4_K_M.gguf 35068c10e5aab8060733a09dd3ce3eb0dc1675ce2f0d0868d3900a0cc3034b04 Ornith-1.0-9B-Q5_K_M.gguf 4a2ac913063eb19ea8703a5dad152464751a56fd2341dc39341c03010e597b89 Ornith-1.0-9B-Q6_K.gguf ddacff58b16f56d38508c2539c0a77aa4e811593bee99d0fa7daaee3a46be2d4 Ornith-1.0-9B-Q8_0.gguf c3ccdde49803bb78c43f29183e053ba80ea1cec5e3498ebce164fbaeab6c775a FINDINGS.md 6ba8e9d13473555cd97b4d24876d1c5bf334efac74be0f8fdc18e2cf802460f7 README.md 3ac43fc0aa5e6f71fca69b4b671a00dec51d673b9ef1b7fdb9da4aad26b41f0f banner.png 8b4d21a1e70ccbc8849e5e5e6dd32f3acfb2e2060739475909edc6e9b27c7165 chat_template.jinja 92af5ec42a90949f53c1491d1a6bedd4a3dd2e59c92217154f5f2da8e6e1fb13 Modelfile 95f47cbb94dbb0b0b55df4d00d6b5a1d29a7769f76f881c70c520470b0500f5c metrics/chart-quality-vs-size.png a282009ffed6e60a50a506ab1349449fec80fe6c4603f912fbd6a4019f7b4865 metrics/quant-summary-with-kld.csv 82676d82bf9cb8d429bf8e8c01be3806573bd14654e1cc4f239077e4bd2d2ec2 metrics/quant-summary-with-kld.json 838a6d8f1ee8f9dabbf4f8fd8f25841aebceb0455530fb23ad0bb8bd6490c3f7 reports/kld_IQ4_XS.log d2b67e913a776fc3d8878ac08b4e9d7150d98f0a962aa4d900fdf83d79798cea reports/kld_Q3_K_M.log b014a27fb44d8d849dfd472a2ad9885641eaba679188824161ecf12b6b070ad2 reports/kld_Q4_K_M.log 1df3f2ea1594011959d28777cf119d253b6db423b4b4a79d7a21415004608d36 reports/kld_Q5_K_M.log abc187f5d579227918a8a7ecb6b65bea10ba00ec46de873bf1e84ba03aabd591 reports/kld_Q6_K.log 39b437173f3e2181c91ac82248155d0d40f8f3259bf48b7c5f2220850008cb40 reports/ppl_IQ4_XS.log c21df1970f1d8cde2765847a6277bff345d02d12480d2780b1d3398d859b59a0 reports/ppl_Q3_K_M.log 8512d60b46f9ccedea51016d885a3e2bb7e18171c6dcb9f15a46ee99804b90f2 reports/ppl_Q4_K_M.log 62e55de5cbab9c39b6b6cafd0a0fa4cf51b9497adcf562c8c68a382ae737fc6f reports/ppl_Q5_K_M.log d9135cee85507aeac0ccd58da8ac7316a1e2a2694d13467dae513eb5b266a93a reports/ppl_Q6_K.log 4085a706699f2357411c397f1c9bbe82587b6f03fb0eb54d902cd9e4a75e0886 reports/ppl_Q8_0.log 92751ebce197623a10697b6503af9757a896fe1552161d91f3d928c5d8814fb1 scripts/ladder.sh bd30950719194abbc478561c71e79ea90dbdfa8623ddd6f34382b8a91d95c135 scripts/parse_metrics.py 26c73374d27bcd534eb38323822151158f68128865331937638a4451babcf694 scripts/phaseB2.sh cd1c0313281612b56e9cbe7634950cb06fe7a1f6cf9716e4639cf38c06a197d9 ornith.imatrix CHECKSUMS_DONE |