Instructions to use ornith-ai/Ornith-1.5-35B-A3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ornith-ai/Ornith-1.5-35B-A3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ornith-ai/Ornith-1.5-35B-A3B") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("ornith-ai/Ornith-1.5-35B-A3B") model = AutoModelForMultimodalLM.from_pretrained("ornith-ai/Ornith-1.5-35B-A3B", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ornith-ai/Ornith-1.5-35B-A3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ornith-ai/Ornith-1.5-35B-A3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ornith-ai/Ornith-1.5-35B-A3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ornith-ai/Ornith-1.5-35B-A3B
- SGLang
How to use ornith-ai/Ornith-1.5-35B-A3B 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 "ornith-ai/Ornith-1.5-35B-A3B" \ --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": "ornith-ai/Ornith-1.5-35B-A3B", "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 "ornith-ai/Ornith-1.5-35B-A3B" \ --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": "ornith-ai/Ornith-1.5-35B-A3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ornith-ai/Ornith-1.5-35B-A3B with Docker Model Runner:
docker model run hf.co/ornith-ai/Ornith-1.5-35B-A3B
Add Toolathlon-Verified evaluation result
#32 opened 1 day ago
by
SaylorTwift
I Benchmarked on RTX 5090: 271 tok/s generation, 673 tok/s at 8 concurrent, 32 KB/token KV cache
#31 opened 5 days ago
by
laxmimerit
Broader benchmarks
#30 opened 6 days ago
by
Duonglv
Tutorial on how to run locally with llama.cpp (+ OpenCode testing)
π€ 1
#28 opened 8 days ago
by
curiousily
Investigating the Trade-off between Reasoning/Efficiency and Instruction Following in Ornith-1.5
π 1
16
#26 opened 9 days ago
by
AnbaiMei
model-00016-of-00016.safetensors was just updated... What?
3
#25 opened 10 days ago
by
pathosethoslogos
Itβs Ornith 2.0 going to be built on top of Qwen3.6?
π₯π 4
#24 opened 10 days ago
by
leonsarmiento
Best local model that runs on commodity hardware
π 1
22
#23 opened 10 days ago
by
dwidlee
Excellent model!
1
#22 opened 10 days ago
by
waynemchuck
No speculative decoding, No QAT
8
#21 opened 10 days ago
by
engrtipusultan
Low quality and gaslighting
1
#20 opened 11 days ago
by
I-Am-Sam
base model?
#19 opened 11 days ago
by
khtsly
Constant looping
β 3
1
#18 opened 11 days ago
by
highpolygonal
Great work. Bad advertisement.
π 5
2
#17 opened 12 days ago
by
Izenflamm
Could Autoprompt Unlock a DeepSeek Huge Performance Increase for Ornith?
3
#16 opened 12 days ago
by
anvme
1M context size please?
1
#15 opened 12 days ago
by
dmsh
Qwen 3.8 27b wins?
π 2
3
#14 opened 12 days ago
by
Tdamre
Seems to perform worse than 1.0
π 3
1
#13 opened 13 days ago
by
russellcg
Ornith?
π 2
1
#12 opened 13 days ago
by
inikishev
Use DFlash instead of MTP and stop wasting time
π 4
1
#11 opened 13 days ago
by
zxbc2023
mtp.* tensors look like random init, not trained weights
π§ π 9
16
#10 opened 13 days ago
by
EryriLabs
Don't believe the benchmarks in the model card -- it fails the most basic tool calls like reading + writing files repeatedly under various settings
22
#8 opened 13 days ago
by
pathosethoslogos
Removed Vision Capabilities
3
#7 opened 14 days ago
by
tushar310
Git: Stream 35B model from SSD for low RAM machines
β€οΈ 2
#6 opened 14 days ago
by
Pummelchen
Installation Video and Testing - Step by Step
#5 opened 14 days ago
by
fahdmirzac
temperature=0.6 or temperature=1.0?
π 1
2
#4 opened 14 days ago
by
DanTup
Unsloth GGUF's please
1
#3 opened 14 days ago
by
jlindeberg
wen on artificialanalysis.ai?
6
#2 opened 14 days ago
by
anvme
Add evaluation results
#1 opened 14 days ago
by
SaylorTwift