FluxyChat

How-to Guides

Room memory for operators

Persistent facts extracted from room conversations (PH-132).

Room memory for operators

Room memory stores durable facts from the conversation: decisions, tasks, FAQs, user context, and key facts. Each entry links to source messages for audit.

Query

GET /rooms/:roomId/memory?limit=12
Authorization: Bearer <member-jwt>

Optional filter: ?kind=decision

Extract on demand

POST /rooms/:roomId/memory/extract
Authorization: Bearer <member-jwt>

Requires a configured LLM provider on the Worker. Returns extracted entries and insert/update counts.

Dashboard

Rooms → Room memory shows entries with kind badges, confidence, and source message ids. Use Extract from messages after a meaningful thread.

Memory kinds

KindUse
decisionChoices made in the room
taskAction items and TODOs
faqRepeated questions and answers
user_contextPreferences or facts about participants
key_factDurable technical or business facts
sentimentTone signals (use sparingly)

Pair with Live knowledge graph for relational context.

On this page