actionsForEntryFlow

abstract fun actionsForEntryFlow(entryId: String): Flow<List<ConversationAction>>

Returns a Flow of ConversationActions for a specific conversation entry.

The flow emits the current list of actions and updates whenever new actions are persisted for the given entry (e.g., from SSE events or network fetches).

Return

A Flow emitting the list of ConversationActions for the entry.

Parameters

entryId

The identifier of the conversation entry to observe actions for.