jcbtc commited on
Commit
94b2dfe
·
verified ·
1 Parent(s): eb46b09

Polish vision download and harness instructions

Browse files
Files changed (1) hide show
  1. README.md +2 -10
README.md CHANGED
@@ -233,14 +233,6 @@ RUNTIME_DIR="$PWD/ciru-runtime-v3.0.0" \
233
 
234
  `ENABLE_VISION=1` is equivalent. The flag loads `vision/mmproj-Qwen3.8-Flash-F16.mmproj`; `MMPROJ=/path/to/projector.mmproj` overrides that path. The `.mmproj` file is a **GGUF-format vision projector**, with a filename extension chosen to keep Hub model-size detection focused on the language model. A missing projector produces a clear startup error. Direct runtime launches can pass `--mmproj ./model/vision/mmproj-Qwen3.8-Flash-F16.mmproj` alongside the normal model and PLE arguments.
235
 
236
- Existing users can download just the updated launcher and vision files:
237
-
238
- ```bash
239
- hf download jcbtc/Qwen3.8-Flash-CIRU-STRIX-IU4 \
240
- run-server.sh 'vision/*' --local-dir ./model
241
- (cd model/vision && sha256sum -c SHA256SUMS)
242
- ```
243
-
244
  Send an image through the server web UI or the OpenAI-compatible chat endpoint. For a local image:
245
 
246
  ```bash
@@ -271,7 +263,7 @@ The projector was converted to F16 directly from the pinned original Qwen checkp
271
 
272
  ### DeepSeek harness configuration
273
 
274
- When using this model through the DeepSeek harness, start the server with `--vision` and declare image input in the harness's this model model configuration using `input`:
275
 
276
  ```yaml
277
  input:
@@ -279,7 +271,7 @@ input:
279
  - image
280
  ```
281
 
282
- Replace the this model entry's `inputModalities` field with the `input` list above. A user reported that the harness recognized this model image input with this configuration; the native DeepSeek model's `inputModalities` declaration did not work for their this model entry. This is a harness configuration requirement, in addition to loading the projector with `--vision`.
283
 
284
  ### Image resolution budget
285
 
 
233
 
234
  `ENABLE_VISION=1` is equivalent. The flag loads `vision/mmproj-Qwen3.8-Flash-F16.mmproj`; `MMPROJ=/path/to/projector.mmproj` overrides that path. The `.mmproj` file is a **GGUF-format vision projector**, with a filename extension chosen to keep Hub model-size detection focused on the language model. A missing projector produces a clear startup error. Direct runtime launches can pass `--mmproj ./model/vision/mmproj-Qwen3.8-Flash-F16.mmproj` alongside the normal model and PLE arguments.
235
 
 
 
 
 
 
 
 
 
236
  Send an image through the server web UI or the OpenAI-compatible chat endpoint. For a local image:
237
 
238
  ```bash
 
263
 
264
  ### DeepSeek harness configuration
265
 
266
+ When using this model through the DeepSeek harness, start the server with `--vision` and declare image input in the harness model configuration using `input`:
267
 
268
  ```yaml
269
  input:
 
271
  - image
272
  ```
273
 
274
+ Replace the model entry's `inputModalities` field with the `input` list above. This configuration was reported working by an Orca user of the DeepSeek harness; the same declaration is included here for this release's image-capable endpoint. Load the projector with `--vision` as well.
275
 
276
  ### Image resolution budget
277