You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`stats`: best for showing business numbers side by side, such as revenue, sales, new users, conversion, refunds, or any other value you want visible at a glance
145
145
-`metrics`: best for live percentage values that change often, like server CPU, memory usage, disk usage, or error rate
146
+
-`timer`: best for countdowns and elapsed timers, like benchmark runs, cooking timers, workouts, soak windows, and long-running jobs
146
147
-`segmented_progress`: best for anything that moves through clear stages, like deployments, onboarding flows, backups, ETL pipelines, migrations, and AI agent runs
147
148
-`progress`: best for tracking real-time progress with percentage, like tasks, backups, migrations, syncs, or uploads
148
149
-`alert`: best for status updates, such as feature adoption, reactivation, onboarding blockers, incidents, escalations, and other operational states
Use `duration_seconds` for a countdown. Omit `counts_down` for the default countdown behavior, or set `counts_down=False` for an elapsed timer.
257
+
258
+
```python
259
+
activitysmith.live_activities.stream(
260
+
"benchmark-run",
261
+
content_state=content_state(
262
+
title="Benchmark Run",
263
+
subtitle="sampling performance",
264
+
type="timer",
265
+
duration_seconds=300,
266
+
color="cyan",
267
+
),
268
+
)
269
+
```
270
+
271
+
Later updates can change the title, subtitle, color, icon, or action without resetting the timer. Include `duration_seconds` again only when you want to restart the timer window from that update.
272
+
253
273
#### Alert
254
274
255
275
<palign="center">
@@ -382,7 +402,7 @@ Add more context to Live Activities with icons and badges.
382
402
383
403
#### Icon
384
404
385
-
Supported Live Activity types: `stats`, `metrics`, `progress`, `segmented_progress`, and `alert`.
405
+
Supported Live Activity types: `stats`, `metrics`, `progress`, `segmented_progress`, `alert`, and `timer`.
386
406
387
407
<palign="center">
388
408
<imgsrc="https://cdn.activitysmith.com/features/metrics-live-activity-with-icon.png"alt="Metrics Live Activity with an SF Symbol icon on the iPhone Lock Screen"width="680" />
0 commit comments