Poll turn status
Return the in-flight turn state for a conversation: the current
turn_status, the accumulated message-level turn_events buffer, and
updated_at. Clients poll this every few seconds after send_message
returns 202 and re-render from the returned events. A RUNNING turn
whose updated_at has gone stale is transitioned to failed on read.
Authorizations
Use Authorization: Bearer
Path Parameters
UUID of the project
UUID of the conversation
Response
Current turn state
In-flight turn state returned by the async send_message (202) and poll
endpoints for playground and Work-with-Clara conversations.
Lifecycle of the current chat turn
idle, running, failed Failure detail when turn_status is failed (empty otherwise)
Accumulated message-level events for the current turn. Each item mirrors
a former SSE frame: {type_streaming, payload} where type_streaming is
one of streaming_in_progress, streaming_error, streaming_completed, or
quick_replies_ready (Clara only).
Last activity timestamp; doubles as the turn staleness heartbeat