artificial-citizen commited on
Commit
5e69ffd
·
verified ·
1 Parent(s): 026cd5f

card: fix context to 256K + enable vision in default recipe

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -46,14 +46,15 @@ Deltas are within single-trial run-to-run variance (temp 0.6–0.7); throughput
46
  ```bash
47
  vllm serve protoLabsAI/Ornith-1.0-35B-FP8 \
48
  --served-model-name ornith-35b \
49
- --max-model-len 131072 \
50
  --reasoning-parser qwen3 \
51
  --enable-auto-tool-choice --tool-call-parser qwen3_xml \
52
  --gpu-memory-utilization 0.90 \
53
- --language-model-only \
54
  --trust-remote-code
55
  ```
56
 
 
 
57
  Ornith is a reasoning model: the assistant turn opens with a `<think>…</think>` block surfaced as `reasoning_content`; tool calls are emitted as standard `tool_calls`. Recommended sampling: `temperature=0.6, top_p=0.95, top_k=20`.
58
 
59
  ## License & attribution
 
46
  ```bash
47
  vllm serve protoLabsAI/Ornith-1.0-35B-FP8 \
48
  --served-model-name ornith-35b \
49
+ --max-model-len 262144 \
50
  --reasoning-parser qwen3 \
51
  --enable-auto-tool-choice --tool-call-parser qwen3_xml \
52
  --gpu-memory-utilization 0.90 \
 
53
  --trust-remote-code
54
  ```
55
 
56
+ **Context:** full **256K** (262144). **Vision:** the base is multimodal (Qwen-VL-style image + video tokens) and the vision tower is preserved in bf16 — the recipe above keeps it enabled. For **text-only** serving (smaller footprint), add `--language-model-only`. Verified serving with vision on at 256K on RTX PRO 6000 (Blackwell, sm120).
57
+
58
  Ornith is a reasoning model: the assistant turn opens with a `<think>…</think>` block surfaced as `reasoning_content`; tool calls are emitted as standard `tool_calls`. Recommended sampling: `temperature=0.6, top_p=0.95, top_k=20`.
59
 
60
  ## License & attribution