Skip to content

Echo Configuration

Echo is EchoMode's alignment monitoring system. It tracks whether conversations stay on-topic using a state machine. See Echo state values for the full list of states and transitions.

GET /echo/config/

Get the Echo configuration for an agent.

Response 200

json
{
  "config": {
    "user_off_topic_streak_threshold": 3,
    "user_on_topic_streak_threshold": 3
  }
}

PUT /echo/config/

Update Echo configuration.

Request body

FieldTypeDescription
user_off_topic_streak_thresholdintegerConsecutive off-topic rounds before state escalation
user_on_topic_streak_thresholdintegerConsecutive on-topic rounds to recover state

Response 200 — updated config.