@phamkhachoabk/dsh-local-vision-describe 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -23,6 +23,19 @@ The first command pulls in Local Vision itself, so it is the only plugin
23
23
  command needed on a fresh machine. Restart the harness afterwards: bundle
24
24
  layers are composed at boot.
25
25
 
26
+ **Upgrading a profile that already has Local Vision** needs one more command,
27
+ because a profile pins its own `^0.2.0` and that range cannot reach the
28
+ `0.3.0` this bundle needs:
29
+
30
+ ```
31
+ dsh plugin --profile web add @phamkhachoabk/dsh-local-vision@latest
32
+ ```
33
+
34
+ Without it the descriptions never appear: the provider loads and the model
35
+ starts, but the consumer row that would ask it is the old one. That is what
36
+ the `@phamkhachoabk/dsh-image-context` peer dependency is for — the package
37
+ manager says so instead of installing a pair that cannot work.
38
+
26
39
  The second is the part this bundle cannot do for you. MLX needs a Python
27
40
  environment, and the checkpoint (about 2.5 GB) downloads itself on the plugin's
28
41
  first start. Until both exist, the provider reports itself unusable and Local
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phamkhachoabk/dsh-local-vision-describe",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local Vision image descriptions for DeepSeek Harness: a vision-language model on your own machine tells a text-only model what each image shows, beyond the text OCR can read",
5
5
  "type": "module",
6
6
  "exports": {
@@ -26,6 +26,7 @@
26
26
  "@phamkhachoabk/dsh-vision-describe-mlx": "^0.1.0"
27
27
  },
28
28
  "peerDependencies": {
29
- "@deepseek-ai/cordis": "^4.0.2"
29
+ "@deepseek-ai/cordis": "^4.0.2",
30
+ "@phamkhachoabk/dsh-image-context": "^0.3.0"
30
31
  }
31
32
  }