diff --git a/homeassistant/components/conversation/services.yaml b/homeassistant/components/conversation/services.yaml index 1a28044dcb5..7b6717eec6d 100644 --- a/homeassistant/components/conversation/services.yaml +++ b/homeassistant/components/conversation/services.yaml @@ -1,24 +1,16 @@ # Describes the format for available component services process: - name: Process - description: Launch a conversation from a transcribed text. fields: text: - name: Text - description: Transcribed text example: Turn all lights on required: true selector: text: language: - name: Language - description: Language of text. Defaults to server language example: NL selector: text: agent_id: - name: Agent - description: Assist engine to process your request example: homeassistant selector: conversation_agent: diff --git a/homeassistant/components/conversation/strings.json b/homeassistant/components/conversation/strings.json index dc6f2b5f52b..15e783c0d90 100644 --- a/homeassistant/components/conversation/strings.json +++ b/homeassistant/components/conversation/strings.json @@ -1 +1,23 @@ -{ "title": "Conversation" } +{ + "title": "Conversation", + "services": { + "process": { + "name": "Process", + "description": "Launches a conversation from a transcribed text.", + "fields": { + "text": { + "name": "Text", + "description": "Transcribed text input." + }, + "language": { + "name": "Language", + "description": "Language of text. Defaults to server language." + }, + "agent_id": { + "name": "Agent", + "description": "Conversation agent to process your request. The conversation agent is the brains of your assistant. It processes the incoming text commands." + } + } + } + } +}