@letta-ai/letta-code 0.26.6 → 0.26.8
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/package.json
CHANGED
|
@@ -96,7 +96,7 @@ Keep state separate from source code. Do not store secrets in plain JSON; use ex
|
|
|
96
96
|
|
|
97
97
|
## Timers and subscriptions
|
|
98
98
|
|
|
99
|
-
Timers are okay for active-session behavior, but they only run while the extension
|
|
99
|
+
Timers are okay for active-session behavior, but they only run while the extension engine is alive. Always clear them:
|
|
100
100
|
|
|
101
101
|
```ts
|
|
102
102
|
const timer = setInterval(update, 30_000);
|