Features
Smart catch-up digest
Relevance-ranked summary of what you missed since your last visit to a room.
Smart catch-up digest
When you return to a room, FluxyChat shows a catch-up banner with the most relevant updates: mentions, active threads, and semantically related topics. Not just the last N messages chronologically.
Console
- Open any room in Rooms after being away.
- If new activity exists since your last-read watermark,
ChatCatchUpBannerappears at the top with bullet highlights and an optional AI summary. - Dismiss the banner or jump to highlighted messages.
How ranking works
- Load messages since your watermark (
room-catch-up). - Rank by mention of you, thread participation, and semantic similarity (when embeddings are on).
- Optionally summarize top hits via Workers AI.
Without semantic search, ranking falls back to mentions plus recency.
API
GET /rooms/:roomId/catch-up?userId=...
GET /rooms/:roomId/catch-up/smartSmart digest response includes summary, highlights[], and since.
SDK
const digest = await client.getRoomCatchUpDigest(roomId);
// digest.summary, digest.highlights[], digest.sinceEnvironment
| Variable | Purpose |
|---|---|
SEMANTIC_SEARCH_ENABLED | Enables embedding-based topic ranking |
AI_* | Workers AI for summary bullets (optional) |
Configure semantic search under Settings → Search (/settings/search).