Instructions to use deepreinforce-ai/Ornith-1.0-35B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="deepreinforce-ai/Ornith-1.0-35B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("deepreinforce-ai/Ornith-1.0-35B-GGUF", device_map="auto") - llama-cpp-python
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="deepreinforce-ai/Ornith-1.0-35B-GGUF", filename="ornith-1.0-35b-Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "deepreinforce-ai/Ornith-1.0-35B-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": "deepreinforce-ai/Ornith-1.0-35B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
- SGLang
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "deepreinforce-ai/Ornith-1.0-35B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "deepreinforce-ai/Ornith-1.0-35B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "deepreinforce-ai/Ornith-1.0-35B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "deepreinforce-ai/Ornith-1.0-35B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with Ollama:
ollama run hf.co/deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
- Unsloth Studio
How to use deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for deepreinforce-ai/Ornith-1.0-35B-GGUF to start chatting
- Pi
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf deepreinforce-ai/Ornith-1.0-35B-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": "deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf deepreinforce-ai/Ornith-1.0-35B-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 "deepreinforce-ai/Ornith-1.0-35B-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 deepreinforce-ai/Ornith-1.0-35B-GGUF with Docker Model Runner:
docker model run hf.co/deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
- Lemonade
How to use deepreinforce-ai/Ornith-1.0-35B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull deepreinforce-ai/Ornith-1.0-35B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ornith-1.0-35B-GGUF-Q4_K_M
List all available models
lemonade list
Single Coder Setting?
Hello,
I'v searched the web, I've searched YouTube, I've asked Claude, Kimi, Gemini, ChatGPT and I have not arrived at a good standing point.
Does anyone know what a good setup is to where configuration settings don't create conflicts with each other?
Hardware: MacBook Pro M4 Max w\32 GB
Software: LM Studio 04.18
Agentic shell: pi.dev
LLM: deepreinforce-ai/ornith-1.0-35b-Q4_K_M.gguf or
LLM: deepreinforce-ai/ornith-1.0-35b-Q6_K_M.gguf
Question:
- What are the optimal settings for LM Studio "Load"
- What are the optimal settings for LM Studio "Chat Template"
- What are the optimal non-conflicting settings for pi.dev --> models.json
Current LM Studio Settings:
Context Length: 65536
Model supports up to 262144 tokens
CPU Thread Pool Size: 10
Evaluation Batch Size: 2048
Physical Batch Size: 512
Max Concurrent Predictions: 1
Unified KV Cache: On
RoPE Frequency Base: Auto
RoPE Frequency Scale: Auto
Offload KV Cache to GPU Memory: On
Keep Model in Memory: Off
Try mmap(): On
Seed: Random Seed
Number of Experts: 8
Number of layers for which to force...: 0
Speculative Decoding: Off
Chat Template: LM Studio - Default <-- `This is where conflicts may arise if models.json is edited`
Flash Attention: On
K Cache Quantization Type: Q8_0
V Cache Quantization Type: Q8_0
pi.dev models.json settings:
{
"providers": {
"lmstudio": {
"baseUrl": "http://localhost:1234/v1",
"api": "openai-completions",
"apiKey": "lmstudio",
"models": [
{
"id": "ornith-1.0-35b-Q4_K_M",
"compat": { "supportsDeveloperRole": false },
"name": "ornith-1.0-35b-Q4_K_M",
"reasoning": true
}
]
}
}
}
havent tried it myself yet, but in terms of template, since theyre using the qwen parsers from what ive seen -> try the FROGGERIC v21.3 QWEN 3.5\3.6 template
Well, I've switched to llama.cpp and once running, I have it this prompt and I am now testing... lets see how slow\fast\confident it turns out to be:
You are a coding agent running via pi.dev connected to a local llama.cpp server. Stop writing conversational fillers, introductions, or essays. Perform a comprehensive system discovery, optimization rewrite, and alignment audit immediately using your bash and file primitives.
Execute the following sequential steps:
1. DISCOVER ENVIRONMENT: Look up your host hardware architecture (OS, CPU/GPU, total memory), active llama.cpp endpoint health (via `curl 127.0.0.1:8080/health` or `/v1/models`), and current log parameters at `~/llm-models/llama-server.log` to read active threads, flash attention, and context configurations. CRITICAL: You must execute real-time terminal commands and read these files directly right now; do NOT extrapolate, guess, or pull this information from your prior training memory, conversation history, or cached context.
2. EVALUATE PI.DEV CONFIG: Inspect your own local pi.dev configuration files (such as AGENTS.md, APPEND_SYSTEM.md, or active config JSONs) to evaluate your current context limits, temperatures, and token parameters.
3. OPTIMIZE LAUNCHAGENT: Based purely on the discovered host hardware limits and the capabilities of the loaded model, calculate the optimal server flags to maximize local coding performance. Directly apply these settings by editing or overwriting the user's file at:
~/Library/LaunchAgents/com.me.llama-server.plist
Ensure the `<array>` block splits every flag, value, and file path into its own clean, sequential `<string>` entry so Launchd parses them flawlessly. Keep existing ports and model weights paths identical unless hardware limitations absolutely force a change.
4. VALIDATE & LINT: Execute `plutil -lint ~/Library/LaunchAgents/com.me.llama-server.plist` via bash to confirm the structural validity of your changes.
Output your final response using ONLY the following structured format:
### System Alignment Matrix
| Parameter | llama.cpp Server Value | pi.dev Configuration | Alignment Status (Match/Mismatch) |
| :--- | :--- | :--- | :--- |
| Model Path / Name | | | |
| Context Window (-c) | | | |
| Flash Attention | | | |
| Thread / Batch Count | | | |
*Note: If any metric remains hidden from your runtime inspection tools, explicitly label it [Unverified].*
### Deployment Execution
* **Daemon Reload Command:** [Provide the exact bash command line sequence required to unload, reload, and restart this specific launch agent plist]
* **Optimization Summary:** [A single-sentence summary detailing exactly which performance parameters were rewritten to align the environments]
me~% launchctl print gui/$(id -u)/com.me.llama-server
gui/501/com.me.llama-server = {
active count = 1
path = /Users/me/Library/LaunchAgents/com.me.llama-server.plist
type = LaunchAgent
state = running
program = /usr/bin/script
arguments = {
/usr/bin/script
-q
/dev/null
/Users/me/dev/llm/llama.cpp/build/bin/llama-server
-m
/Users/me/llm-models/ornith-1.0-35b-Q4_K_M.gguf
--host
127.0.0.1
--port
8080
-c
131072
-ngl
-1
--flash-attn
on
-t
10
-tb
10
-ub
256
--parallel
1
--cont-batching
--cache-type-k
q4_0
--cache-type-v
q4_0
--mlock
--prio
2
--prio-batch
2
--log-disable
--no-perf
--temp
0.1
--repeat-penalty
1.1
--jinja
--reasoning-preserve
--webui
}
stdout path = /Users/me/llm-models/llama-server.log
stderr path = /Users/me/llm-models/llama-server.error.log
inherited environment = {
SSH_AUTH_SOCK => /var/run/com.apple.launchd.fmasdfdadsfad/Listeners
}
default environment = {
PATH => /usr/bin:/bin:/usr/sbin:/sbin
}
environment = {
OSLogRateLimit => 64
XPC_SERVICE_NAME => com.me.llama-server
}
domain = gui/501 [100027]
asid = 100027
minimum runtime = 10
exit timeout = 5
runs = 1
pid = 42612
immediate reason = speculative
forks = 1
execs = 1
initialized = 1
trampolined = 1
started suspended = 0
proxy started suspended = 0
checked allocations = 0 (queried = 1)
checked allocations reason = no host
checked allocations flags = 0x0
last exit code = (never exited)
resource coalition = {
ID = 11160
type = resource
state = active
active count = 1
name = com.me.llama-server
}
jetsam coalition = {
ID = 11161
type = jetsam
state = active
active count = 1
name = com.me.llama-server
}
spawn type = daemon (3)
jetsam priority = 40
jetsam memory limit (active) = (unlimited)
jetsam memory limit (inactive) = (unlimited)
jetsamproperties category = daemon
submitted job. ignore execute allowed
jetsam thread limit = 32
cpumon = default
properties = keepalive | runatload | inferred program
}
me~%
{
"providers": {
"llamacpp": {
"baseUrl": "http://localhost:8080/v1",
"api": "openai-completions",
"apiKey": "llamacpp",
"models": [
{
"id": "ornith-1.0-35b-Q4_K_M",
"name": "Ornith 1.0 35B Q4_K_M (Local)",
"reasoning": true,
"contextWindow": 131072,
"maxTokens": 8192,
"maxHistoryTokens": 24000,
"thinkingLevelMap": {
"off": "none",
"minimal": "minimal",
"low": "low",
"medium": "medium",
"high": "high"
},
"compat": {
"supportsDeveloperRole": false,
"supportsUsageInStreaming": true
}
},
{
"id": "ornith-1.0-35b-Q5_K_M",
"name": "Ornith 1.0 35B Q5_K_M (Local)",
"reasoning": true,
"contextWindow": 131072,
"maxTokens": 8192,
"maxHistoryTokens": 24000,
"thinkingLevelMap": {
"off": "none",
"minimal": "minimal",
"low": "low",
"medium": "medium",
"high": "high"
},
"compat": {
"supportsDeveloperRole": false,
"supportsUsageInStreaming": true
}
},
{
"id": "ornith-1.0-35b-Q6_K",
"name": "Ornith 1.0 35B Q6_K (Local)",
"reasoning": true,
"contextWindow": 131072,
"maxTokens": 8192,
"maxHistoryTokens": 24000,
"thinkingLevelMap": {
"off": "none",
"minimal": "minimal",
"low": "low",
"medium": "medium",
"high": "high"
},
"compat": {
"supportsDeveloperRole": false,
"supportsUsageInStreaming": true
}
}
]
}
}
}