Instructions to use bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/Ornith-1.5-397B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/Ornith-1.5-397B-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": "bartowski/Ornith-1.5-397B-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
- Ollama
How to use bartowski/Ornith-1.5-397B-GGUF with Ollama:
ollama run hf.co/bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use bartowski/Ornith-1.5-397B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bartowski/Ornith-1.5-397B-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": "bartowski/Ornith-1.5-397B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use bartowski/Ornith-1.5-397B-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
- Lemonade
How to use bartowski/Ornith-1.5-397B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ornith-1.5-397B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-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 bartowski/Ornith-1.5-397B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use bartowski/Ornith-1.5-397B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bartowski/Ornith-1.5-397B-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 "bartowski/Ornith-1.5-397B-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"
Upload folder using huggingface_hub
Browse files- .gitattributes +11 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00001-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00002-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00003-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00004-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00005-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00006-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00007-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00008-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00009-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00010-of-00011.gguf +3 -0
- Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00011-of-00011.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,14 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00001-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00002-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00003-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00004-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00005-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00006-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00007-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00008-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00001-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7278c5c132244393c8a5c273f792bd595dffbbcb32b3f3a1752c502c62c2f17b
|
| 3 |
+
size 39501916640
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00002-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e448e49f7a7c66faa0c3b5c7fc95bb309c74ca8025b4ba606409d6d2fafe2d27
|
| 3 |
+
size 39684390880
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00003-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:987b095b70fde0fdcbdc8aeb14e14c14508753ffdd390c7395bd48ebde244651
|
| 3 |
+
size 39497050944
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00004-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07c88847d0383f7cb23acf696d872c263a1c7c443360271a630494309c0fb2d6
|
| 3 |
+
size 39653701344
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00005-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfa48141ae614d17927ebe92a3805870a14a9c9681854fa175bb7747c12253bd
|
| 3 |
+
size 39646444224
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00006-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9828b91791694ab59f3ad6256b837b03d3b7095928d7c95295259246697627b9
|
| 3 |
+
size 39534997728
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00007-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:675a884d55a41a99a4993319ed0ca55e3034ab2d47d6ca31e01edbb5769395cc
|
| 3 |
+
size 39675985856
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00008-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e962c25df540f9a0e77d3b5ff0533eccf3d5c51fa83920245b7de300c6418c4
|
| 3 |
+
size 39624159680
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00009-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0ba9882afddc8183bdd41f5c9e0a92e1787f2471aeffaa8d9dc8a2fb98e80ec
|
| 3 |
+
size 39534997728
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00010-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:748c3cce9cfc29133305479277bfd1aec04cf29ef5334327a895dae1d2566608
|
| 3 |
+
size 39638039104
|
Ornith-1.5-397B-Q8_0/Ornith-1.5-397B-Q8_0-00011-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:066f209d2cbb7304527a6182dc54c23032b3f52742fa0e5b2f8d3e1fa382270b
|
| 3 |
+
size 25584985408
|