@vtstech/pi-ollama-sync 1.0.9 → 1.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.
package/README.md CHANGED
@@ -25,7 +25,7 @@ pi install "npm:@vtstech/pi-ollama-sync"
25
25
  - Preserves existing provider config (apiKey, compat settings)
26
26
  - Defaults to `openai-completions` API mode
27
27
  - Sorts models by size (smallest first)
28
- - Auto-detects reasoning-capable models (deepseek-r1, qwq, o1, o3, think, reason)
28
+ - Auto-detects reasoning-capable models (deepseek-r1, qwq, qwen3, o1, o3, think, reason)
29
29
  - Merges with existing per-model settings
30
30
  - Per-model metadata in sync report (parameter size, quantization level, model family)
31
31
  - Registered as both `/ollama-sync` slash command and `ollama_sync` tool
package/ollama-sync.js CHANGED
@@ -6,11 +6,12 @@ import {
6
6
  readModelsJson,
7
7
  writeModelsJson,
8
8
  isReasoningModel,
9
- getOllamaBaseUrl
9
+ getOllamaBaseUrl,
10
+ EXTENSION_VERSION
10
11
  } from "@vtstech/pi-shared/ollama";
11
12
  import { section, ok, warn, info, bytesHuman, estimateVram } from "@vtstech/pi-shared/format";
12
13
  var BRANDING = [
13
- ` \u26A1 Pi Ollama Sync v1.0.9`,
14
+ ` \u26A1 Pi Ollama Sync v${EXTENSION_VERSION}`,
14
15
  ` Written by VTSTech`,
15
16
  ` GitHub: https://github.com/VTSTech`,
16
17
  ` Website: www.vts-tech.org`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtstech/pi-ollama-sync",
3
- "version": "1.0.9",
3
+ "version": "1.1.1",
4
4
  "description": "Ollama model sync extension for Pi Coding Agent",
5
5
  "main": "ollama-sync.js",
6
6
  "keywords": ["pi-extensions"],
@@ -14,7 +14,7 @@
14
14
  "url": "https://github.com/VTSTech/pi-coding-agent"
15
15
  },
16
16
  "dependencies": {
17
- "@vtstech/pi-shared": "1.0.9"
17
+ "@vtstech/pi-shared": "1.1.1"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@mariozechner/pi-coding-agent": ">=0.66"