9f226c2ea9
- Introduced configurable voice input provider option: `browser` or `assist_stt`. - Enhanced chat card to support Home Assistant STT transcription mode for manual mic input. - Updated integration settings to expose voice provider through websocket payload. - Adjusted continuous voice mode availability based on selected voice provider. - Updated version to 0.1.32 in manifest and chat card files.
105 lines
3.2 KiB
JSON
105 lines
3.2 KiB
JSON
{
|
|
"config": {
|
|
"step": {
|
|
"user": {
|
|
"title": "OpenClaw Assistant",
|
|
"description": "Set up the OpenClaw integration. The addon will be auto-detected if installed."
|
|
},
|
|
"confirm": {
|
|
"title": "Addon Discovered",
|
|
"description": "Found **{addon_name}** running at `{host}:{port}`.\n\nConfig path: `{config_path}`\n\nPress Submit to connect.",
|
|
"data": {}
|
|
},
|
|
"manual": {
|
|
"title": "Manual Configuration",
|
|
"description": "The OpenClaw addon was not auto-detected. Enter the gateway connection details manually.",
|
|
"data": {
|
|
"gateway_host": "Gateway Host",
|
|
"gateway_port": "Gateway Port",
|
|
"gateway_token": "Gateway Token",
|
|
"use_ssl": "Use SSL (HTTPS)"
|
|
}
|
|
}
|
|
},
|
|
"error": {
|
|
"cannot_connect": "Cannot connect to the OpenClaw gateway. Ensure the addon is running.",
|
|
"invalid_auth": "Invalid gateway token. Check your OpenClaw configuration.",
|
|
"openai_api_disabled": "The gateway returned an unexpected response — the OpenAI-compatible API is likely disabled. In the OpenClaw addon settings enable 'enable_openai_api', restart the addon, and try again.",
|
|
"unknown": "An unexpected error occurred."
|
|
},
|
|
"abort": {
|
|
"already_configured": "OpenClaw is already configured."
|
|
}
|
|
},
|
|
"options": {
|
|
"step": {
|
|
"init": {
|
|
"title": "OpenClaw Options",
|
|
"description": "Configure context and tool-calling behavior.",
|
|
"data": {
|
|
"include_exposed_context": "Include exposed entities context",
|
|
"context_max_chars": "Max context characters",
|
|
"context_strategy": "When context exceeds max",
|
|
"enable_tool_calls": "Enable tool calls (execute services)",
|
|
"wake_word_enabled": "Require wake word",
|
|
"wake_word": "Wake word",
|
|
"always_voice_mode": "Always-on voice mode",
|
|
"allow_brave_webspeech": "Allow Web Speech in Brave (experimental)",
|
|
"voice_provider": "Voice input provider (browser or HA STT)"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"entity": {
|
|
"sensor": {
|
|
"status": {
|
|
"name": "Status"
|
|
},
|
|
"last_activity": {
|
|
"name": "Last Activity"
|
|
},
|
|
"session_count": {
|
|
"name": "Session Count"
|
|
},
|
|
"model": {
|
|
"name": "Model"
|
|
}
|
|
},
|
|
"binary_sensor": {
|
|
"connected": {
|
|
"name": "Connected"
|
|
}
|
|
}
|
|
},
|
|
"services": {
|
|
"send_message": {
|
|
"name": "Send Message",
|
|
"description": "Send a text message to OpenClaw.",
|
|
"fields": {
|
|
"message": {
|
|
"name": "Message",
|
|
"description": "The message text to send."
|
|
},
|
|
"session_id": {
|
|
"name": "Session ID",
|
|
"description": "Optional session ID for conversation context."
|
|
},
|
|
"attachments": {
|
|
"name": "Attachments",
|
|
"description": "Optional file attachments."
|
|
}
|
|
}
|
|
},
|
|
"clear_history": {
|
|
"name": "Clear History",
|
|
"description": "Clear conversation history.",
|
|
"fields": {
|
|
"session_id": {
|
|
"name": "Session ID",
|
|
"description": "Session to clear."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|