Instructions to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 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 sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 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 sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0 # Run inference directly in the terminal: llama cli -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0 # Run inference directly in the terminal: llama cli -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
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 sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
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 sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
Use Docker
docker model run hf.co/sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
- LM Studio
- Jan
- vLLM
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
- Ollama
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with Ollama:
ollama run hf.co/sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
- Unsloth Desktop
- Pi
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
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": "sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with Docker Model Runner:
docker model run hf.co/sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
- Lemonade
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
Run and chat with the model
lemonade run user.ornith-ai-Ornith-1.0-35B-GGUF-Q8_0-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
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 sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0
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 "sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0:Q8_0" \ --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"
โค๏ธ Support & Community: If you find this model helpful, please give this repository a Like on Hugging Face and a โญ Star on our SigmaStudio GitHub!
๐ English Overview
ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 is a production-ready model optimized and published using the Model Hub module of Sigma Studio.
โ๏ธ Technical Specifications & Architecture
| Specification | Value |
|---|---|
| Model Repository | sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 |
| Weight Format | GGUF (Q8_0) |
| Base Architecture | qwen35moe |
| Active Parameters | 35B |
| Context Window | 262,144 tokens |
| Transformer Layers | 40 |
| Hidden Dimension | 2048 |
| Total Disk Footprint | 34.37 GB |
| Inference RAM / VRAM | ~35.4 GB VRAM (Full GPU offload) / ~34.9 GB RAM (CPU/Hybrid) |
| Recommended Hardware | Multi-GPU setup (2ร 24 GB or RTX 6000) or 64 GB system RAM |
| Recommended Usage | Flagship frontier intelligence, Deep research & multi-step mathematics. |
๐ Official Benchmark Performance
Evaluated directly on GPU via Sigma Studio Training Lab (Deterministic seed 42, Temp 0.0):
| Benchmark Suite | Score / Accuracy | Total Questions Evaluated | Pass Rate | Test Date | Execution Engine |
|---|---|---|---|---|---|
| Tutti i Benchmark Ufficiali | 72.0% |
72/100 quesiti superati | 72.0% Pass |
2026-09-08 |
โก SigmaEngine Direct GPU |
๐ง Reasoning Mode Comparison: No-Thinking vs Thinking
Side-by-side performance comparison between direct zero-overhead answer (No-Thinking) and Chain-of-Thought step-by-step reasoning (Deep Thinking CoT):
โก No-Thinking (Direct Response) : [โโโโโโโโโโโโโโโโโโโโ] 80.7% (46/57 passed)
๐ง Deep Thinking (CoT Reasoning) : [โโโโโโโโโโโโโโโโโโโโ] 60.5% (26/43 passed)
๐ CoT Performance Delta : -20.2%
%%{init: {'theme': 'dark'}}%%
xychart-beta
title "Accuracy (%): No-Thinking vs Deep Thinking"
x-axis ["โก No-Thinking (Direct)", "๐ง Deep Thinking (CoT)"]
y-axis "Accuracy (%)" 0 --> 100
bar [80.7, 60.5]
| Execution Mode | Accuracy (%) | Questions Passed | Operational Profile & Latency |
|---|---|---|---|
| โก No-Thinking (Direct Response) | 80.7% |
46 / 57 |
Minimal latency, immediate token-to-first-byte, zero reasoning tokens overhead |
| ๐ง Deep Thinking (CoT Reasoning) | 60.5% |
26 / 43 |
Multi-step structured reasoning trace (-20.2%), optimal for math & hard logic |
๐ Per-Dataset Evaluation Breakdown
| Dataset / Benchmark Suite | Domain / Category | Correct / Total | Accuracy (%) | Status |
|---|---|---|---|---|
| ARC-Challenge | Science & Grade-School Reasoning | 9 / 9 | 100% |
โ Passed |
| BIG-Bench Hard | Complex Multi-Task Logic & Symbolics | 5 / 7 | 71% |
โ Passed |
| GPQA | Graduate-Level Academic Reasoning | 2 / 9 | 22% |
โ ๏ธ Low |
| GSM8K | Multi-Step Grade School Math | 8 / 9 | 89% |
โ Passed |
| HellaSwag | Commonsense Reasoning & Situational NLI | 6 / 9 | 67% |
โก Fair |
| HumanEval | Python Coding (pass@1) | 7 / 7 | 100% |
โ Passed |
| MATH | Championship Competition Math | 5 / 9 | 56% |
โก Fair |
| MBPP | Python Programming with Unit Tests | 7 / 9 | 78% |
โ Passed |
| MMLU | General Knowledge & Multi-Subject | 9 / 14 | 64% |
โก Fair |
| MMLU-Pro | Advanced Multi-Step Reasoning | 6 / 9 | 67% |
โก Fair |
| TruthfulQA | Factuality & Anti-Hallucination | 8 / 9 | 89% |
โ Passed |
| ๐ OVERALL TOTAL | All Evaluated Datasets | 72 / 100 |
72% |
๐ 72% Pass |
Protocol: code_execution, continuation_logprob, cot_generation, letter_logprob ยท temp 0.0 ยท seed 42
๐ ๏ธ Tool Calling & Agentic Protocol Benchmark (Sigma Studio Sandbox Jail)
Empirical multi-turn agent reliability evaluation (zero quizzes, fully grounded file-system actions inside isolated Sandbox Jail):
| Protocol Metric | Outcome | Validation Criteria & Details |
|---|---|---|
| Tool Protocol Adherence | 100.0% |
10/10 analytical criteria verified |
| Autonomous Task Completion | 0.0% |
0/1 scenarios completed with exact target file |
| Sandbox Jail Containment | 100% Compliant |
Zero escape attempts outside workspace boundary |
| Execution Efficiency | 5 turns (12.0s) |
Optimal multi-step turn and token budget usage |
๐ Certified Autonomous Capabilities:
- โ Tool Grounding: Exclusively uses registered tools and valid schemas (zero hallucinated functions).
- โ Zero Placeholder Echo: Emits concrete code and values rather than copy-pasting prompt templates.
- โ Inspect-Before-Edit: Systematically reads files and verifies target lines before patching.
- โ Evidence-Based Exit: Emits concrete test commands and validation checks before task exit.
- โ Sandbox Containment: Strictly adheres to isolated sandbox jail boundaries.
โก Measured Speed on the Publishing Machine
Measured on NVIDIA GeForce RTX 5070 Ti โข 15.9 GB VRAM during the evaluation run.
| What was measured | Value | How |
|---|---|---|
| Aggregate throughput during evaluation | 35.4 tok/s |
several requests in flight โ not what a single answer runs at |
Speeds on other hardware were not measured and are not guessed here. A single-stream figure from one machine cannot be scaled into a prediction for another: it depends on memory bandwidth, quantization, context length and driver, and the error is large enough to be misleading.
๐ Quick Start Guide
1. Running with Sigma Studio (Recommended)
Launch Sigma Studio to enjoy full 1-click GPU hardware acceleration, live monitoring, and visual chat:
# Clone and run Sigma Studio
git clone https://github.com/Sigmanih/SigmaStudio.git
cd SigmaStudio
.\sigma_studio.bat
2. Running with llama.cpp
llama-cli -hf sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 -p "Hello! How can I help you today?" -ngl 99
๐ฎ๐น Documentazione in Italiano
ornith-ai-Ornith-1.0-35B-GGUF-Q8_0 รจ un modello ottimizzato pronto per l'inferenza e l'integrazione locale, pubblicato attraverso ฮฃ-SIGMA Studio.
๐ Specifiche e Configurazione
- Architettura Base:
qwen35moe(35B parametri) - Formato Pesi:
GGUF(Q8_0) - Spazio su Disco:
34.37 GB - RAM / VRAM in Esecuzione:
~35.4 GB VRAM(offload GPU completo) |~34.9 GB RAM(inferenza CPU/ibrida) - Requisiti Hardware Consigliati: Configurazione Multi-GPU (2ร 24 GB o RTX 6000) o 64 GB RAM
- Finestra di Contesto:
262,144 token - Profilo d'Uso Consigliato: Intelligenza di frontiera, ricerca approfondita e matematica multi-step.
๐ Risultati Benchmark Ufficiali
- Suite di Valutazione:
Tutti i Benchmark Ufficiali - Punteggio Ufficiale:
72.0%(72/100 quesiti superati)
๐ง Confronto Modalitร di Risposta: No-Thinking vs Thinking
Confronto visuale tra risposta istantanea diretta (No-Thinking) e ragionamento guidato multi-step (Deep Thinking CoT):
โก No-Thinking (Risposta Diretta) : [โโโโโโโโโโโโโโโโโโโโ] 80.7% (46/57 superati)
๐ง Deep Thinking (CoT Reasoning) : [โโโโโโโโโโโโโโโโโโโโ] 60.5% (26/43 superati)
๐ Delta Prestazionale CoT : -20.2%
%%{init: {'theme': 'dark'}}%%
xychart-beta
title "Accuratezza (%): No-Thinking vs Deep Thinking"
x-axis ["โก No-Thinking (Diretto)", "๐ง Deep Thinking (CoT)"]
y-axis "Accuratezza (%)" 0 --> 100
bar [80.7, 60.5]
| Modalitร di Esecuzione | Accuratezza (%) | Quesiti Superati | Profilo Operativo & Latenza |
|---|---|---|---|
| โก No-Thinking (Risposta Diretta) | 80.7% |
46 / 57 |
Latenza minima, token-to-first-byte istantaneo, zero overhead di ragionamento |
| ๐ง Deep Thinking (CoT Reasoning) | 60.5% |
26 / 43 |
Risoluzione passo-passo multi-step (-20.2%), ideale per logica complessa e matematica |
๐ Dettaglio Punteggi per Singolo Dataset
| Dataset / Suite di Test | Ambito / Dominio | Corretti / Totale | Accuratezza (%) | Esito |
|---|---|---|---|---|
| ARC-Challenge | Ragionamento Scientifico Avanzato | 9 / 9 | 100% |
โ Superato |
| BIG-Bench Hard | Logica Complessa & Compiti Multi-Fase | 5 / 7 | 71% |
โ Superato |
| GPQA | Ragionamento Accademico di Livello Laurea | 2 / 9 | 22% |
โ ๏ธ Migliorabile |
| GSM8K | Matematica & Logica Multi-Step | 8 / 9 | 89% |
โ Superato |
| HellaSwag | Buon Senso & Comprensione Situazionale | 6 / 9 | 67% |
โก Discreto |
| HumanEval | Sintesi Codice Python (pass@1) | 7 / 7 | 100% |
โ Superato |
| MATH | Matematica Olimpica & Competitiva | 5 / 9 | 56% |
โก Discreto |
| MBPP | Programmazione Python con Unit Test | 7 / 9 | 78% |
โ Superato |
| MMLU | Conoscenza Generale Multidisciplinare | 9 / 14 | 64% |
โก Discreto |
| MMLU-Pro | Ragionamento Avanzato Multi-Step | 6 / 9 | 67% |
โก Discreto |
| TruthfulQA | Fattualitร & Resistenza ad Allucinazioni | 8 / 9 | 89% |
โ Superato |
| ๐ TOTALE COMPLESSIVO | Tutti i Dataset Valutati | 72 / 100 |
72% |
๐ 72% Pass |
Protocollo: code_execution, continuation_logprob, cot_generation, letter_logprob ยท temp 0.0 ยท seed 42
- Data Test:
2026-09-08su motore deterministico SigmaEngine
๐ ๏ธ Benchmark Aderenza Tool & Capacitร Agente (Sigma Studio Sandbox Jail)
Valutazione empirica dell'affidabilitร nei compiti di agente autonomo (nessun quiz teorico, solo esecuzioni e verifiche su filesystem isolato):
| Metrica di Protocollo | Risultato | Dettaglio e Criteri di Validazione |
|---|---|---|
| Aderenza Protocollo Tool | 100.0% |
10/10 prove analitiche verificate |
| Completamento Scenari Operativi | 0.0% |
0/1 scenari conclusi con output esatto |
| Sicurezza Sandbox Jail | 100% Conforme |
Confinamento rigido, zero tentativi fuori sandbox |
| Efficienza Esecutiva | 5 turni (12.0s) |
Rispetto rigoroso dei budget operativi per scenario |
๐ Comportamenti Rigorosamente Certificati:
- โ Tool Grounding: Utilizzo esclusivo di tool formalmente registrati (zero allucinazioni di comandi).
- โ No Segnaposto: Produzione di codice e parametri concreti senza eco di placeholder d'esempio.
- โ Ispezione Previa: Lettura e verifica dei file prima di eseguire modifiche chirurgiche.
- โ Verifica di Chiusura: Certificazione delle prove prima di dichiarare terminato il lavoro.
- โ Confinamento Jail: Isolamento totale senza contaminazione del kernel o del sistema host.
โฑ๏ธ Throughput Hardware e Fasce Consigliate
- Velocitร Verificata in Locale:
35.4 tok/ssuNVIDIA GeForce RTX 5070 Ti. - Throughput complessivo durante la valutazione:
35.4 tok/sโ piu' richieste in volo insieme, non la velocita' di una risposta singola. - Le velocita' su altro hardware non sono state misurate e non vengono indovinate: dipendono da banda di memoria, quantizzazione, lunghezza del contesto e driver.
โญ Supporta il Progetto Open Source
Se questo modello ti รจ utile o vuoi esplorare l'ecosistema completo:
- ๐ Metti una Stella al repository GitHub: Sigmanih/SigmaStudio
- โค๏ธ Lascia un Like a questa scheda su Hugging Face
Creato e distribuito con il Model Hub di ฮฃ-SIGMA Studio (13/09/2026 17:45)
- Downloads last month
- 286
8-bit
Model tree for sigmanih/ornith-ai-Ornith-1.0-35B-GGUF-Q8_0
Base model
ornith-ai/Ornith-1.0-35B