All models

Ornith 1.0

by DeepReinforce

Chat Tools Thinking

Ornith 1.0 is DeepReinforce's hybrid-reasoning model, designed to combine deliberate step-by-step thinking with efficient long-context inference. It supports tool use and is offered in two sizes for different quality-versus-cost trade-offs.

Publisher
DeepReinforce
Context window
256K tokens
Sizes
35B, 9B
Licence
MIT
Model card on Hugging Face

Run Ornith 1.0

Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

response = client.chat.completions.create(
    model="ornith:35b",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)

Run Ornith 1.0 on your own UK infrastructure

Deploy a worker, install Ornith 1.0, and start serving it through one sovereign API endpoint.