wormclaude 1.0.80 → 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 +3 -1
- package/dist/theme.js +1 -1
- package/package.json +1 -1
package/dist/compact.js
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
// Manuel /compact ve otomatik (eşik aşılınca) tetikleme aynı çekirdeği kullanır.
|
|
3
3
|
import { completeText } from './agent.js';
|
|
4
4
|
import { approxTokens } from './usage.js';
|
|
5
|
-
// Bağlam penceresi
|
|
5
|
+
// Bağlam penceresi — vLLM'de servis edilen modelin GERÇEK tavanıyla hizalı olmalı.
|
|
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).
|
|
6
8
|
const CONTEXT_WINDOW = Number(process.env.WORMCLAUDE_CONTEXT_WINDOW) || 32768;
|
|
7
9
|
const SUMMARY_RESERVE = 4000; // özet çıktısı için rezerv (CC: ~20K büyük modellerde)
|
|
8
10
|
const AUTOCOMPACT_BUFFER = 2000;
|
package/dist/theme.js
CHANGED