wormclaude 1.0.81 → 1.0.82

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/dist/compact.js CHANGED
@@ -3,10 +3,9 @@
3
3
  import { completeText } from './agent.js';
4
4
  import { approxTokens } from './usage.js';
5
5
  // Bağlam penceresi — vLLM'de servis edilen modelin GERÇEK tavanıyla hizalı olmalı.
6
- // Sunucu (Qwen2.5-32B-AWQ) max-model-len = 16384. 32768 verilirse özetleme geç
7
- // tetiklenir, model 16K'da "bağlam taştı" hatası döndürür tepkisel/geç toparlama.
8
- // Daha büyük bağlam istenirse: önce vLLM max-model-len artırılmalı (KV-cache VRAM gerektirir).
9
- const CONTEXT_WINDOW = Number(process.env.WORMCLAUDE_CONTEXT_WINDOW) || 16384;
6
+ // Sunucu (Qwen2.5-32B-AWQ) max-model-len = 32768 (vision kaldırıldı, KV-cache 8.9GiB/GPU).
7
+ // Model tavanı değişirse bu değer de güncellenmeli (ya da WORMCLAUDE_CONTEXT_WINDOW ile override).
8
+ const CONTEXT_WINDOW = Number(process.env.WORMCLAUDE_CONTEXT_WINDOW) || 32768;
10
9
  const SUMMARY_RESERVE = 4000; // özet çıktısı için rezerv (CC: ~20K büyük modellerde)
11
10
  const AUTOCOMPACT_BUFFER = 2000;
12
11
  export function autoCompactThreshold() {
package/dist/theme.js CHANGED
@@ -16,4 +16,4 @@ export const theme = {
16
16
  synType: '#a78bfa', // tip/sınıf adları, sabitler
17
17
  synProp: '#e0e0e0', // özellik/anahtar adları
18
18
  };
19
- export const VERSION = '1.0.81';
19
+ export const VERSION = '1.0.82';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {