meetsoma 0.27.0 → 0.27.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/dist/thin-cli.js +11 -1
- package/package.json +1 -1
package/dist/thin-cli.js
CHANGED
|
@@ -2047,7 +2047,17 @@ async function projectDoctor() {
|
|
|
2047
2047
|
};
|
|
2048
2048
|
add("doctor", { autoUpdate: true, declinedVersion: null });
|
|
2049
2049
|
add("keepalive", { maxPings: 5, autoExhale: true, autoExhaleMinTokens: 75e3 });
|
|
2050
|
-
add("breathe", {
|
|
2050
|
+
add("breathe", {
|
|
2051
|
+
auto: "model-aware",
|
|
2052
|
+
triggerAt: 50,
|
|
2053
|
+
rotateAt: 70,
|
|
2054
|
+
thresholds: {
|
|
2055
|
+
"default": { warnRange: [50, 64], exhaleRange: [65, 85] },
|
|
2056
|
+
"*sonnet*": { warnRange: [28, 33], exhaleRange: [34, 50] },
|
|
2057
|
+
"*opus*": { warnRange: [60, 74], exhaleRange: [75, 90] }
|
|
2058
|
+
},
|
|
2059
|
+
graceSeconds: 30
|
|
2060
|
+
});
|
|
2051
2061
|
add("context", { notifyAt: 50, warnAt: 70, urgentAt: 80, autoExhaleAt: 85 });
|
|
2052
2062
|
add("preload", { staleAfterHours: 48, lastSessionLogs: 0, recentNotesCount: 3 });
|
|
2053
2063
|
add("scratch", { autoInject: false });
|