Views
No views yet
<think> … </think> reasoning traces, and is optimized for terminal-based coding agents and agentic workflows. These GGUF versions enable efficient local inference via llama.cpp and compatible tools.⚠️ Important: Always pass--jinjawhen loading withllama.cppso the Ornith-1.0-9B chat template is applied correctly. Without it, the model may emit malformed turns.
huggingface-cli:1pip install "huggingface_hub[cli]"
2huggingface-cli download samuelchristlie/Ornith-1.0-9B-gguf --local-dir ./Ornith-1.0-9B-ggufllama.cpp or clients built on top of it (e.g., Ollama, LM Studio, KoboldCpp, text-generation-webui with a llama.cpp backend).temperature=0.6, top_p=0.95, top_k=20. Use temperature=1.0 to reproduce the original published benchmark results.llama-server -hf samuelchristlie/Ornith-1.0-9B-gguf --port 8000 -c 262144 --jinjaollama run hf.co/samuelchristlie/Ornith-1.0-9B-gguf<think> … </think> block containing the chain-of-thought, followed by the final answer. To split them:1if "</think>" in text:
2 reasoning, answer = text.split("</think>", 1)
3 reasoning = reasoning.replace("<think>", "").strip()
4 answer = answer.strip()
5else:
6 reasoning, answer = "", text.strip()deepreinforce-ai/Ornith-1.0-9B model. The original model is licensed under the MIT License, and this derivative work adheres to the terms of