opencode-see-image 0.5.5 → 0.5.6

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/index.ts +2 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -475,7 +475,8 @@ const SeeImagePlugin: Plugin = async (ctx) => {
475
475
  }
476
476
  }
477
477
 
478
- log(`plugin initialized`, "info")
478
+ const version = currentVersion() || "unknown"
479
+ log(`plugin initialized v${version}`, "info")
479
480
  maybeAutoUpdate(client, $, log).catch((e) => {
480
481
  log(`auto-update error: ${e?.message ?? e}`, "warn")
481
482
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-see-image",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "Give non-vision opencode models the ability to see images/screenshots by routing them to a vision-capable model (MiniMax M3 via opencode-go by default).",
5
5
  "type": "module",
6
6
  "main": "index.ts",