package domain // Intent describes the JSON contract expected from the LLM. type Intent struct { Name string `json:"intent"` Entity string `json:"entity"` Params map[string]string `json:"params"` Reply string `json:"reply"` } const ( IntentNone = "none" IntentTurnOnLight = "turn_on_light" IntentTurnOffLight = "turn_off_light" IntentListLights = "list_lights" )